태그>wx.menu(총 2개의 글)
'wx.menu' 관련 최근글
-
- [wxPython] wx.ManuBar 만들기(체크, ..
-
Python Developer by 하린아빠|2008/02/20 17:43
#!/usr/bin/python# menu1.pyimport wx class MyMenu(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx.DefaultPosition, wx.S..
- [wxPython] wx.ManuBar 만들기(체크, ..
-
- [wxPython] wx.MenuBar를 이용한 메뉴 만..
-
Python Developer by 하린아빠|2008/02/20 15:16
#!/usr/bin/python# menu1.pyimport wx # menu 클래스 정의class MyMenu(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx.Defau..
- [wxPython] wx.MenuBar를 이용한 메뉴 만..