我想使用已知任务的系统默认图标(复制,剪切,粘贴,filenew,fileopen,exit,help,...)。这取决于桌面环境和/或使用的操作系统中设置的当前使用的图标。
Python是否提供了一种与平台无关的方式来获取这些图标?
这是一些基于Tkinter的伪代码
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from tkinter import *
from tkinter import ttk
from PIL import *
root = Tk()
image = image.open(DEFAULT_COPY_ICON)
image = ImageTk.PhotoImage(image)
button = Button(master=root, text='Copy', image=image))
root.mainloop()