wxpython Enable/Disable Buttons
I have the following button defined:
Code:
self.saveBtn=wx.Button(pnl,ID_SAVE,’Save’)
self.saveBtn.Bind(wx.EVT_BUTTON,self.OnSave)
self.saveBtn.Disable()
Then I set up a […]
Original post by gw1500se
I have the following button defined:
Code:
self.saveBtn=wx.Button(pnl,ID_SAVE,’Save’)
self.saveBtn.Bind(wx.EVT_BUTTON,self.OnSave)
self.saveBtn.Disable()
Then I set up a […]
Original post by gw1500se
Leave a Reply
You must be logged in to post a comment.