尝试将简单图像添加到标签中

发布于 2024-11-24 20:42:53 字数 1032 浏览 1 评论 0原文

使用学校提供的 Tkinter 教程网站,我尝试将一个简单的 Paint-drawn gif 添加到我的 Python 程序的标签中。

mainframe = ttk.Frame(sub, padding="3 3 12 12")
mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
mainframe['padding'] = (5,10)
label = ttk.Label(mainframe).grid(column=1, row=1)
image1 = PhotoImage(file='myimage.gif')
label['image'] = image1
sub.mainloop()

有问题的片段是:

label = ttk.Label(mainframe).grid(column=1, row=1)
image1 = PhotoImage(file='myimage.gif')
label['image'] = image1

As this returns

Exception in Tkinter callback
Traceback (most recent call last):
    File "C:\Python31\lib\tkinter\__init__.py", line 1399, in __call__
        return self.func(*args)
    File "\\curriculum.lan\filestore\home\2005\jasomner\Downloads\trial5.py", line 20, in subwindow
        label['image'] = image1
TypeError: 'NoneType' object does not support item assignment

Why?我该如何解决这个问题?

Using a Tkinter tutorial site -as supplied by school-, I attempted to add a simple Paint-drawn gif into a Label on my Python program.

mainframe = ttk.Frame(sub, padding="3 3 12 12")
mainframe.grid(column=0, row=0, sticky=(N, W, E, S))
mainframe.columnconfigure(0, weight=1)
mainframe.rowconfigure(0, weight=1)
mainframe['padding'] = (5,10)
label = ttk.Label(mainframe).grid(column=1, row=1)
image1 = PhotoImage(file='myimage.gif')
label['image'] = image1
sub.mainloop()

The snippet in question is:

label = ttk.Label(mainframe).grid(column=1, row=1)
image1 = PhotoImage(file='myimage.gif')
label['image'] = image1

As this returns

Exception in Tkinter callback
Traceback (most recent call last):
    File "C:\Python31\lib\tkinter\__init__.py", line 1399, in __call__
        return self.func(*args)
    File "\\curriculum.lan\filestore\home\2005\jasomner\Downloads\trial5.py", line 20, in subwindow
        label['image'] = image1
TypeError: 'NoneType' object does not support item assignment

Why? How can I fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青衫儰鉨ミ守葔 2024-12-01 20:42:53

当您这样做时

label = ttk.Label(mainframe).grid(column=1, row=1)

,它会将 Label().grid() 的输出存储在 label 中,而不是由 Label 创建的新 Label 实例()

则需要这样做。

label = ttk.Label(mainframe)
label.grid(column=1, row=1)

如果您想将 Label 实例存储在 label 中并设置网格,

When you do

label = ttk.Label(mainframe).grid(column=1, row=1)

it's storing the output of Label().grid() in label, not the new Label instance created by Label().

You need to do

label = ttk.Label(mainframe)
label.grid(column=1, row=1)

if you want to both store the Label instance in label and set the grid.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文