在Tkinter和Python3中使用系统默认图标

时间:2017-12-18 21:49:44

标签: python-3.x tkinter python-imaging-library

我想使用已知任务的系统默认图标(复制,剪切,粘贴,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()

0 个答案:

没有答案