如何在Pmw.ButtonBox中禁用特定按钮?

时间:2011-08-09 17:12:17

标签: python tkinter

我添加了一个按钮:

def addButtons(self):
    self.buttonBox = Pmw.ButtonBox(self.dataFrame,
            labelpos = 'nw',
            label_text = '',
            frame_borderwidth = 1,
            frame_relief = 'groove')
    self.buttonBox.pack()
    self.buttonBox.place(relx=.75, rely=.750, anchor=W)

    # Add some buttons to the ButtonBox.
    self.buttonBox.add('Login', command = self.login)

    # Set the default button (the one executed when <Return> is hit).
    self.buttonBox.setdefault('Login')
    self.dataFrame.bind('<Return>', self._processReturnKey)
    self.dataFrame.focus_set()

现在,我想在用户按下时禁用登录按钮。我怎样才能做到这一点?我已找到简单按钮的答案,但此按钮位于按钮框中。

1 个答案:

答案 0 :(得分:2)

根据pmw.ButtonBox documentationadd方法返回对创建的按钮的引用。因此,只需保存它返回的引用,然后像配置任何其他按钮一样配置该按钮。