태그>wxpython(총 38개의 글)
'wxpython' 관련 최근글
-
- wxpython ..

-
Confusion will be my epitaph by epitaph|02/06 18:44
wxpython을 이용해서 Windows, Linux, OSX 에서 돌아가는 단결정 회절관련 프로그램을 짜고 있다. GUI design은 xrced를 사용함. wxpython이 참 잘 만들어지긴 했는데 가끔 OS 마다 다른 현상을 보일 때가 있다. 예를들어 wx.Frame의 toolbar에 StaticText를 넣..
- wxpython ..
-
- [python] wxPython - ListCtrl에서 Column 별 정렬 기법

-
Like The Learning Machine by fullc0de|2008/12/03 12:12
wxPython을 시작하시는 분들에게 도움이 되었으면 하네요. Column 바를 클릭하면 자동으로 오름차순 내림차순으로 정렬되도록 하는 방법은 다음과 같습니다. 거두절미 하고 이벤트에서 처리하는 부분 보여드릴께요. 1. 이벤트를 등록하시고. self.Bind(wx.EVT_LIST_C..
- [python] wxPython - ListCtrl에서 Column 별 정렬 기법
-
- [wxpython] wx.Frame과 wx.Dialog의 차이점

-
만약 달에 토끼가 살았다면 세상은 어떻게 변했을까.. by paperl|2008/11/18 17:02
<원본출처> wx.Frame * 사용자에 의해서 window의 사이즈와 위치를 변경할 수 있다. * title bar를 가지고, menu bar, status bar등은 옵션으로 가질 수 있다. * frame은 frame이나 다이얼로그가 아닌 다른 window를 가질 수 있다. wx.Dialog * title bar와 system..
- [wxpython] wx.Frame과 wx.Dialog의 차이점
-
- [wxPython] 07/01

-
For Further Future! by zest5815|2008/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 cla..
- [wxPython] 07/01
-
- [wxPython] wx.CheckBox를 이용한 체크박..

-
Python Developer by 하린아빠|2008/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, ti..
- [wxPython] wx.CheckBox를 이용한 체크박..
-
- [wxPython] wx.ComboBox(콤보 박스)를 ..

-
Python Developer by 하린아빠|2008/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=..
- [wxPython] wx.ComboBox(콤보 박스)를 ..
-
- [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..







