태그>wx.evt_paint(총 2개의 글)
'wx.evt_paint' 관련 최근글
-
- [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] Bitmap 화면에 출력하기

-
Python Developer by 하린아빠|2008/02/26 16:46
#!/usr/bin/python # -*- coding: cp949 -*- # bitmap.pyimport wxclass MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, size = (300, 3..
- [wxPython] Bitmap 화면에 출력하기




