wxpython : button covers all in the frame
- by Prakash
Below is my code:
#!/usr/bin/python
# -*- coding: utf-8 -*-
import wx
class Example(wx.Frame):
def __init__(self):
#super(Example, self).__init__(parent, title=title, size=(300, 200))
wx.Frame.__init__(self, None, wx.ID_ANY, 'wxButton', pos=(300, 150), size=(320, 250))
self.button1 = wx.Button(self, id=-1,…