python kwargs表达式求值
作者:互联网
关于将复杂表达式作为关键字参数传递,我应该知道些什么吗?我遇到的示例在tkinter中:
image = gui.utils.get_image(self.get_icon('pause'), dimensions=(50, 50))
button = ttk.Label(self.mainframe, image=image)
button.place(x=0, y=-10, relwidth=1, relheight=1)
可行,但以下内容无效:
button = ttk.Label(self.mainframe, image=gui.utils.get_image(self.get_icon('pause'), dimensions=(50, 50)))
button.place(x=0, y=-10, relwidth=1, relheight=1)
有什么不同? gui.utils.get_image(self.get_icon(‘pause’),Dimensions =(50,50))应该在我将其传递给构造函数时进行评估.这是python中的错误(我使用2.7),还是tkinter的错误?如果有帮助,我将在子线程中运行此代码,但不会引用此线程之外的任何对象.
编辑:
所谓“作品”,是指所需的图像贴在标签的背景上.在第二个示例中,标签以正确的大小和位置显示,但背景为空白.
解决方法:
您需要保留对图像的引用. Otherwise, as Fredrik Lundh explains,
Tkinter tells Tk to release the image. But since the image is in use by
a widget, Tk doesn’t destroy it. Not completely. It just blanks the
image, making it completely transparent…
标签:kwargs,evaluation,tkinter,python 来源: https://codeday.me/bug/20191029/1961101.html