Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- array
- SQL
- tkinter Radio 동적버튼
- check_password
- GraphQL
- FastAPI
- flask
- numpy
- allauth
- for loop
- graphene-django
- Django
- python
- Django-allauth
Archives
- Today
- Total
객
[wxPython] static box & radio button 본문
#!/usr/bin/python #coding: cp949 import wx class TestPanel(wx.Frame): def __init__(self, parent, title): wx.Frame.__init__(self, parent, -1, title, size=(600, 400)) panel = wx.Panel(self, -1) sizer = wx.BoxSizer(wx.VERTICAL) rb = wx.RadioBox( panel, -1, 'RadioBox', wx.DefaultPosition, wx.DefaultSize, ['Python', 'wxWidget', 'wxPython'], 1, wx.RA_SPECIFY_COLS ) sizer.Add(rb, 0, wx.ALL, 10) box = wx.StaticBox(panel, -1, "그룹 박스") bsizer = wx.StaticBoxSizer(box, wx.VERTICAL) t = wx.StaticText(panel, -1, "그룹 박스 예제 입니다.") bsizer.Add(t, 0, wx.TOP | wx.LEFT, 10) border = wx.BoxSizer(wx.HORIZONTAL) border.Add(sizer, 0, wx.EXPAND | wx.ALL, 10) border.Add(bsizer, 1, wx.EXPAND | wx.ALL, 10) panel.SetSizer(border) if __name__ == '__main__': app = wx.App() frame = TestPanel(None, "그룹박스예제") frame.Show(True) app.MainLoop() |
'[PL] > Python' 카테고리의 다른 글
DJANGO settings.py 의 db(Postgresql, cubrid, sqlite3, mariadb)설정 (0) | 2013.12.05 |
---|---|
Django 관련 (0) | 2013.12.02 |
[wxpython] staticbox (0) | 2007.10.26 |
[GUI] wxPython 사용하여만든 것입니다. (0) | 2007.10.16 |
[GUI ] wxpython 을 사용하여. (0) | 2007.10.12 |