0

当我尝试向按钮添加图像时,程序将运行,但按钮将为空白,您无法单击它。如果我更改image=Tkinter.PhotoImage(file="C:/TeDOC/OpenFolder.gif")text='Open Directory它工作正常,您可以单击该按钮。我不知道为什么当我将其更改为 img 时,它不起作用。任何帮助将不胜感激。

这是我的代码:

import Tkinter, Tkconstants, tkFileDialog

class TkFileDialogExample(Tkinter.Frame):

def __init__(self, root):

Tkinter.Frame.__init__(self, root)

# options for buttons
button_opt = {'fill': Tkconstants.BOTH, 'padx': 5, 'pady': 5}

# define buttons
Tkinter.Button(self, image=Tkinter.PhotoImage(file="C:/TeDOC/OpenFolder.gif"), command=self.askdirectory).pack(**button_opt)

# defining options for opening a directory
self.dir_opt = options = {}
options['initialdir'] = 'C:\\'
options['mustexist'] = False
options['parent'] = root
options['title'] = 'This is a title'


def askdirectory(self):
#Returns a selected directoryname.
return tkFileDialog.askdirectory(**self.dir_opt)

if __name__=='__main__':
  root = Tkinter.Tk()
  TkFileDialogExample(root).pack()
  root.mainloop()
4

2 回答 2

1

首先,您必须使用 self.image 定义您的图像。所以试试:

self.image = Tkinter.PhotoImage(file="C:/TeDOC/OpenFolder.gif")

然后在您的按钮下,输入:

Tkinter.Button(self, image=self.image, command=self.askdirectory).pack(**button_opt)
于 2014-06-01T20:02:23.480 回答
0

您必须将图像保存在自我中。

self.image = Tkinter.PhotoImage(file="C:/TeDOC/OpenFolder.gif")
Tkinter.Button(..., image=Tkinter.PhotoImage(file="C:/TeDOC/OpenFolder.gif"), ...

如果删除,则不会显示。

于 2014-06-01T20:02:57.933 回答