我正在尝试将参数传递给按钮单击func并遇到问题。
简而言之,我试图按下按钮以弹出askColor()
方法,并将该颜色值作为相关文本框的背景颜色返回。
它的功能是,synaesthets可以将颜色与字母/数字相关联,并记录结果颜色列表。
具体路线:
self.boxA = Text(self.mainframe, state='normal', width=3, height=1, wrap='word', background=self.AVal).grid(column=2, row=2, padx=4)
self.boxB = Text(self.mainframe, state='normal', width=3, height=1, wrap='word', background=self.AVal).grid(column=3, row=2, padx=4)
self.boxC = Text(self.mainframe, state='normal', width=3, height=1, wrap='word', background=self.AVal).grid(column=4, row=2, padx=4)
self.ABlob = ttk.Button(self.mainframe, text="A",style= 'mainSmall.TButton', command= lambda: self.getColour(self.boxA)).grid(column=2, row=3)
self.BBlob = ttk.Button(self.mainframe, text="B",style= 'mainSmall.TButton', command= lambda: self.getColour(self.boxB)).grid(column=3, row=3)
self.CBlob = ttk.Button(self.mainframe, text="C",style= 'mainSmall.TButton', command= lambda: self.getColour(self.boxC)).grid(column=4, row=3)
和
def getColour(self,glyphRef):
(triple, hexstr) = askcolor()
if hexstr:
glyphRef.config(bg=hexstr)
问题是我似乎无法以我正在尝试的方式引用self.ABlob
- 它返回类型None
。我尝试在按钮单击功能中包含pack.forget
命令,但这也不起作用。
答案 0 :(得分:3)
您问题的主要部分似乎是:
问题是我似乎无法以我的方式引用self.ABlob 我正在尝试 - 它返回类型无
执行x=ClassA(...).func(...)
时,x包含对func
的调用结果。因此,当您执行self.ABlob = ttk.Button(...).grid(...)
时,self.ABlob
中存储的内容为None
,因为这是网格函数返回的内容。
如果要存储对按钮的引用,则需要创建按钮,然后将网格调用为两个单独的步骤:
self.ABlob = ttk.Button(...)
self.ABlob.grid(...)
我个人认为这是一种最佳做法,特别是当你使用网格时。通过将所有网格语句放在一个块中,可以更容易地显示布局并发现错误:
self.ABlob.grid(row=3, column=2)
self.BBlob.grid(row=3, column=3)
self.CBlob.grid(row=3, column=4)