]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/wxPIA_book/Chapter-07/button.py
   3 class ButtonFrame(wx
.Frame
): 
   5         wx
.Frame
.__init
__(self
, None, -1, 'Button Example',  
   7         panel 
= wx
.Panel(self
, -1) 
   8         self
.button 
= wx
.Button(panel
, -1, "Hello", pos
=(50, 20)) 
   9         self
.Bind(wx
.EVT_BUTTON
, self
.OnClick
, self
.button
) 
  10         self
.button
.SetDefault() 
  12     def OnClick(self
, event
): 
  13         self
.button
.SetLabel("Clicked") 
  15 if __name__ 
== '__main__': 
  16     app 
= wx
.PySimpleApp()