태그>wx.panel(총 3개의 글)
'wx.panel' 관련 최근글
-
- [wxPython] 기본 Object - 커서(Cursor)

-
Python Developer by 하린아빠|2008/02/26 13:48
#!/usr/bin/python # -*- coding: cp949 -*- # layout.pyimport wxclass Cursors(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title) # BoxSizer 생성 vbox = wx.BoxSizer(wx.VERTICAL) # Grid..
- [wxPython] 기본 Object - 커서(Cursor)
-
- [wxPython] wx.Panel Style 지정하기

-
Python Developer by 하린아빠|2008/02/22 20:59
#!/usr/bin/python # -*- coding: cp949 -*- # layout.py import wxclass MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title) #..
- [wxPython] wx.Panel Style 지정하기
-
- [wxPython] wx.Button(버튼) 만들기

-
Python Developer by 하린아빠|2008/02/22 17:08
#!/usr/bin/python # -*- coding: cp949 -*- # layout.pyimport wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx..
- [wxPython] wx.Button(버튼) 만들기




