태그>wxpython(총 46개의 글)
'wxpython' 관련 최근글
-
- [wxPython] wx.Font를 이용한 폰트 지정하기

-
Python Developer by 하린아빠|2008/02/26 14:36
#!/usr/bin/python # -*- coding: cp949 -*- # layout.py import wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, w..
- [wxPython] wx.Font를 이용한 폰트 지정하기
-
- [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.GridBagSizer를 이용한 wx.B..

-
Python Developer by 하린아빠|2008/02/26 13:28
#!/usr/bin/python # -*- coding: cp949 -*- # layout.py import wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx.Default..
- [wxPython] wx.GridBagSizer를 이용한 wx.B..
-
- [wxPython] 계산기 만들기

-
Python Developer by 하린아빠|2008/02/26 12:42
#!/usr/bin/python # -*- coding: cp949 -*- # layout.pyimport wxclass MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx..
- [wxPython] 계산기 만들기
-
- [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(2) 정렬

-
Python Developer by 하린아빠|2008/02/22 20:29
#!/usr/bin/python # -*- coding: cp949 -*- # layout.py import wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, (..
- [wxPython] wx.Button(2) 정렬
-
- [wxPython] wx.BoxSizer 이용하기

-
Python Developer by 하린아빠|2008/02/22 20:02
#!/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, (..
- [wxPython] wx.BoxSizer 이용하기
-
- [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(버튼) 만들기
-
- [wxPython] wx.ToolBar 만들기

-
Python Developer by 하린아빠|2008/02/20 19:26
#!/usr/bin/python # toolbar.pyimport wx class MyToolBar(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, wx.DefaultPosition, w..
- [wxPython] wx.ToolBar 만들기
-
- [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를 이용한 메뉴 만..
-
- [wxPython] wx.Frame 아이콘 설정하기

-
Python Developer by 하린아빠|2008/02/20 10:53
#!/usr/bin/python# icon.pyimport wx # main 함수 정의 def main(): app = wx.App() frame = wx.Frame(None, title='icon', pos=(350, 300)) # ICON 설정하기 frame.SetIcon..
- [wxPython] wx.Frame 아이콘 설정하기
-
- [wxPython] wxFrame::wxFrame 생성하기(생성자)

-
Python Developer by 하린아빠|2008/02/20 10:35
wxFrame::wxFramewxFrame() 기본 생성자. [예제 1] 기본 모양의 Frame 생성시 wx.Frame(wx.Window parent, id, string title, wx.Point pos = wx.DefaultPosition, wx.Size size = wx.DefaultSize, style = wx.DEFAULT_FRAME_STYL..
- [wxPython] wxFrame::wxFrame 생성하기(생성자)
-
- [wxPython] wxWindow의 상속

-
Python Developer by 하린아빠|2008/02/20 10:19
wxWindow - wxWindow 클래스는 많은 위젯의 기분 클래스로 wxFrame도 wxWindow로 부터 상속 받는다. [wxFrame을 통해 wxWindow로 부터 상속 받은 몇개의 함수들을 사용하는 예] #!/usr/bin/pyt..
- [wxPython] wxWindow의 상속
-
- [wxPython] Simple wxPython(초간단 윈도..

-
Python Developer by 하린아빠|2008/02/19 11:41
#!/usr/bin/python#simple.py# wx 라이브러리 포함 import wx # Application 객체 생성및 wx.App 클래스 초기화 app = wx.App() # Frame 위젯 생성 frame = wx.Frame(None, -1, 's..
- [wxPython] Simple wxPython(초간단 윈도..




