태그|wxpython(총 36개의 글)
'wxpython' 관련 최근글
-
- [wxPython] 07/01

-
For Further Future! by zest5815|07/01 22:07
'헬로우 월드!' 부터 시작해서 차근차근! ^^ CODE) #!/usr/bin/env python # *-* coding: euc-kr -*- import wx # 윈도우 위치 및 사이즈 POS X 450 POS Y 150 SIZE X 350 SIZE Y 200 class MyFrame..
- [wxPython] 07/01
-
- wxPython START!

-
For Further Future! by zest5815|06/11 19:06
Python으로 작업된 프로그램에 GUI를 입혀 봐야겠다는 욕심이 조금씩 생겨서 앞으로 wxPython을 틈틈히 연마하기로 결심했다 PyQT와 wxPython 둘 중에서 무엇을 할지 고민을 많이 했는데, QT쪽은 4학년 때 경험해 봤던 것도 있고 이래저래 여차저차해서 wxPython을 선..
- wxPython START!
-
- [wxPython] wx.CheckBox를 이용한 체크박..

-
Python Developer by 하린아빠|02/28 15:37
# -*- coding: cp949 -*- #!/usr/bin/python# checkbox py import wx class MyCheckBox(wx Frame): def init (self, parent, id, title): wx Frame init (self, parent, id, title, ..
- [wxPython] wx.CheckBox를 이용한 체크박..
-
- [wxPython] wx.ComboBox(콤보 박스)를 ..

-
Python Developer by 하린아빠|02/27 20:38
# -*- coding: cp949 -*- #!/usr/bin/python# combobox py import wx class MyDialog(wx Dialog): def init (self, parent, id, title): wx Dialog init (self, parent, id, title, size (250, 27..
- [wxPython] wx.ComboBox(콤보 박스)를 ..
-
- [wxPython] wx.StaticBox를 이용한 컨트롤 ..

-
Python Developer by 하린아빠|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, size..
- [wxPython] wx.StaticBox를 이용한 컨트롤 ..
-
- [wxPython] wx.StaticText를 이용한 문자열 출력

-
Python Developer by 하린아빠|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, wx De..
- [wxPython] wx.StaticText를 이용한 문자열 출력
-
- [wxPython] wx.StaticLine 을 이용한 구분선..

-
Python Developer by 하린아빠|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, size (360, ..
- [wxPython] wx.StaticLine 을 이용한 구분선..
-
- [wxPython] wx.BitmapButton의 사용

-
Python Developer by 하린아빠|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, size (350, ..
- [wxPython] wx.BitmapButton의 사용
-
- [wxPython] wx.Button를 이용한 Button 이벤..

-
Python Developer by 하린아빠|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): def init ..
- [wxPython] wx.Button를 이용한 Button 이벤..
-
- [wxPython] 다이얼로그(Dialog) 만들기2

-
Python Developer by 하린아빠|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 (self,..
- [wxPython] 다이얼로그(Dialog) 만들기2
-
- [wxPython] 다이얼로그(Dialog) 만들기

-
Python Developer by 하린아빠|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, title,..
- [wxPython] 다이얼로그(Dialog) 만들기
-
- [wxPython] 이벤트05 (사이즈 이벤트 예제 : wx..

-
Python Developer by 하린아빠|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) pane..
- [wxPython] 이벤트05 (사이즈 이벤트 예제 : wx..
-
- [wxPython] 이벤트04 (사이즈 이벤트 예제 : wx.EVT_PAINT)

-
Python Developer by 하린아빠|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, self OnPa..
- [wxPython] 이벤트04 (사이즈 이벤트 예제 : wx.EVT_PAINT)
-
- [wxPython] 이벤트03 (사이즈 이벤트 예제 : wx..

-
Python Developer by 하린아빠|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, title) ..
- [wxPython] 이벤트03 (사이즈 이벤트 예제 : wx..








