태그>wx.event(총 5개의 글)
'wx.event' 관련 최근글
-
- [wxPython] 이벤트05 (사이즈 이벤트 예제 : w..

-
Python Developer by 하린아빠|2008/02/26 19:20
# -*- coding: cp949 -*- #!/usr/bin/python# keyevent.py import wxclass KeyEvent(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title..
- [wxPython] 이벤트05 (사이즈 이벤트 예제 : w..
-
- [wxPython] 이벤트04 (사이즈 이벤트 예제 : wx.EVT_PAINT)

-
Python Developer by 하린아빠|2008/02/26 19:10
# -*- coding: cp949 -*-#!/usr/bin/python # paintevent.py import wxclass PaintEvent(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title) # Paint 이벤트 함수와 연결 self.Bind(wx.EVT_PAINT, s..
- [wxPython] 이벤트04 (사이즈 이벤트 예제 : wx.EVT_PAINT)
-
- [wxPython] 이벤트03 (사이즈 이벤트 예제 : w..

-
Python Developer by 하린아빠|2008/02/26 18:52
#!/usr/bin/python # -*- coding: cp949 -*- # moveevent.py import wx class MoveEvent(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, ti..
- [wxPython] 이벤트03 (사이즈 이벤트 예제 : w..
-
- [wxPython] 이벤트02 (사이즈 이벤트 예제 : w..

-
Python Developer by 하린아빠|2008/02/26 18:43
#!/usr/bin/python # -*- coding: cp949 -*- # sizeevent.py import wx class SizeEvent(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, tit..
- [wxPython] 이벤트02 (사이즈 이벤트 예제 : w..
-
- [wxPython] 이벤트01 (스크롤 이벤트 예제)

-
Python Developer by 하린아빠|2008/02/26 18:35
#!/usr/bin/python # -*- coding: cp949 -*- # myscrollwinevent.py import wx class MyScrollWinEvent(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, p..
- [wxPython] 이벤트01 (스크롤 이벤트 예제)




