태그>wxpython(총 46개의 글)
'wxpython' 관련 최근글
-
- [wxPython] wx.StaticBox를 이용한 컨트롤..

-
Python Developer by 하린아빠|2008/02/27 20:26
# -*- coding: cp949 -*- #!/usr/bin/python# staticbox.py import wxclass MyDialog(wx.Dialog): def _init_(self, parent, id, title): wx.Dialog_init_(self, parent, id, title..
- [wxPython] wx.StaticBox를 이용한 컨트롤..
-
- [wxPython] wx.StaticText를 이용한 문자열..

-
Python Developer by 하린아빠|2008/02/27 20:18
# -*- coding: cp949 -*- #!/usr/bin/python# statictext.py import wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title,..
- [wxPython] wx.StaticText를 이용한 문자열..
-
- [wxPython] wx.StaticLine 을 이용한 구분선..

-
Python Developer by 하린아빠|2008/02/27 19:13
# -*- coding: cp949 -*- #!/usr/bin/python# centraleurope.py import wxclass MyDialog(wx.Dialog): def _init_ (self, parent, ID, title): wx.Dialog_init_(self, parent, ID, title, si..
- [wxPython] wx.StaticLine 을 이용한 구분선..
-
- [wxPython] wx.BitmapButton의 사용

-
Python Developer by 하린아빠|2008/02/27 18:56
# -*- coding: cp949 -*-#!/usr/bin/python# player.py import wx class MyFrame(wx.Frame): def _init_(self, parent, id, title): wx.Frame_init_(self, parent, id, title, si..
- [wxPython] wx.BitmapButton의 사용
-
- [wxPython] wx.Button를 이용한 Button ..

-
Python Developer by 하린아빠|2008/02/27 14:33
# -*- coding: cp949 -*- #!/usr/bin/python# buttons.py import wx # 랜덤 처리 유닛 import random # Dialog 사이즈 APP_SIZE_X = 300 APP_SIZE_Y = 200 class MyButtons(wx.Dialog)..
- [wxPython] wx.Button를 이용한 Button ..
-
- [wxPython] 다이얼로그(Dialog) 만들기2

-
Python Developer by 하린아빠|2008/02/26 20:37
# -*- coding: cp949 -*- #!/usr/bin/python# customdialog2.py import wx class MyDialog(wx.Dialog): # 다이얼 로그 초기화 def _init_(self, parent, id, title): wx.Dialog_init_..
- [wxPython] 다이얼로그(Dialog) 만들기2
-
- [wxPython] 다이얼로그(Dialog) 만들기

-
Python Developer by 하린아빠|2008/02/26 20:23
# -*- coding: cp949 -*- #!/usr/bin/python # customdialog1.py import wx class MyDialog(wx.Dialog): def _init_(self, parent, id, title): wx.Dialog_init_(self, parent, id, ..
- [wxPython] 다이얼로그(Dialog) 만들기
-
- [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 (스크롤 이벤트 예제)
-
- [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 화면에 출력하기
-
- [wxPython] 패널의 색상을 시간 단위로 변경..

-
Python Developer by 하린아빠|2008/02/26 16:35
#!/usr/bin/python # -*- coding: cp949 -*-# randomcolours.py import wx from random import randrange from wx.lib.colourdb import * class MyFrame(wx.Frame): def _init_(self..
- [wxPython] 패널의 색상을 시간 단위로 변경..
-
- [wxPython] 색상 설정하기(wx.Colour, Set..

-
Python Developer by 하린아빠|2008/02/26 14:47
#!/usr/bin/python # -*- coding: cp949 -*- # colours.py import wx class Colours(wx.Dialog): def _init_(self, parent, id, title): # wx.Dialog 초기화 wx.Dialog_init_(self, parent, ..
- [wxPython] 색상 설정하기(wx.Colour, Set..




