如何禁用Tkinter中的Combobox?
基本上,我想根据另一个组合框的值禁用某个组合框。 我无法找到这个问题的答案,也许是因为这对Combobox来说是非常罕见的。
我有一个或多或少的代码如下...
self.cBox1Var=tki.StringVar()
self.cBox1=ttk.Combobox(self.mframe, width=16, textvariable=self.cBox1Var, state='readonly',values=['Text entry','Combo box','Check button'])
self.cBox1.grid(row=0,column=1,sticky=tki.W)
self.cBox1Var.set('Text entry')
self.cBox1Var.bind("<<ComboboxSelected>>", lambda event, count=count: self.EnableDisableParamFields(event, count))
self.cBox2Var=tki.StringVar()
self.cBox2=ttk.Combobox(self.mframe, width=16, textvariable=self.cBox2Var, state='readonly',values=['String','Integer','Float'])
self.cBox2.grid(row=0,column=2,sticky=tki.W)
self.cBox2Var.set('String')
...
def EnableDisableParamFields(self, event, count):
if self.cBox1Var.get()=='Combo box': #disable 'Entry format combo box'
#disable "self.cBox2"
else:
#enable "self.cBox2"
提前致谢
编辑!!!!
坚持后,找到答案,而且很简单。 对于那些可能感兴趣的人,可以在这里找到解决方案:http://www.tcl.tk/man/tcl8.5/TkCmd/ttk_combobox.htm
“状态='禁用','只读'或'正常'”
你想使用state='disabled'
的Combobox
选项。
有三种选择state
如下:
state='normal'
,这是全功能的Combobox
。 state='readonly'
是组合Combobox
的值,但不能被改变(直接)。 state='disabled'
,这是Combobox
无法与之交互的地方。