如何在Tkinter中禁用Combobox?

时间:2014-07-07 11:52:34

标签: python combobox tkinter

基本上,我想根据另一个组合框的值禁用某个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','readonly'或'normal'”

1 个答案:

答案 0 :(得分:5)

您想使用Combobox的{​​{1}}选项。

state='disabled'有三个选项如下:

  • state这是功能齐全的state='normal'
  • Combobox这是state='readonly'的值,但无法直接更改。
  • Comboboxstate='disabled'无法与之互动。