Adding a Button to a Frame : Button : WxPython PYTHON TUTORIALS


PYTHON TUTORIALS » WxPython » Button »

 

Adding a Button to a Frame


Adding a Button to a Frame
import wx

app = wx.App()
win = wx.Frame(None)
btn = wx.Button(win)
win.Show()
app.MainLoop()



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo WxPython
» Button