목록programming/wxPython (2)
관심있는 것들 정리
wxPython Hello World
wxPython의 hello world 프로그램이라 할수 있는 가장 기초가되는 코드 #!/usr/bin/python import wx app = wx.App() frame = wx.Frame(None, -1, 'hello world') frame.Show() app.MainLoop()
programming/wxPython
2012. 2. 25. 14:49
frame size 조절 예제
frame size 조절 예제 #!/usr/bin/python import wx class SizeTest(wx.Frame): def __init__(self, parent, title): super(SizeTest, self).__init__(parent, title=title) self.SetSize((100,200)) self.Show() if __name__ == '__main__': app = wx.App() SizeTest(None, title='SizeTest') app.MainLoop()
programming/wxPython
2012. 2. 25. 14:45