태그>wxpython(총 46개의 글)
'wxpython' 관련 최근글
-
- A Byte of Python - What Next

-
SCIENART BB by SCIENART BB|2019/04/20 14:39
What Next If you have read this book thoroughly till now and practiced writing a lot of programs, then you must have become comfortable and familiar with Python. You have probably created some Python programs to try out stuff and ..
- A Byte of Python - What Next
-
- wxpython skeleton code

-
루오니의 집 by 루오니|2011/10/25 14:24
#!python import wx class PySimpleApp(wx.App): def _init_(self, redirect=False, filename=None, usbBestVisual=False, clearSigInt=True): wx.App_init_(self, redirect, filename, useBestVisual, clearSigInt) def OnInit..
- wxpython skeleton code
-
- wxpython messagebox dialog

-
루오니의 집 by 루오니|2011/10/25 14:24
if _name_ = '_main_': app = wx.PySimpleApp() #frame = InsertFrame(None, id=-1) #frame.Show(True) dlg = wx.MessageDialog(None, 'Is this the coolest thing ever!', 'Message Dialog', wx.YES_NO | wx.ICON_QUESTI..
- wxpython messagebox dialog
-
- wxpython text entry dialog

-
루오니의 집 by 루오니|2011/10/25 14:23
if _name_ = '_main_': app = wx.PySimpleApp() #frame = InsertFrame(None, id=-1) #frame.Show(True) dlg = wx.TextEntryDialog(None, "Who is buried in Grant's tomb?", 'A Question', 'Cary Grant') if dlg.Show..
- wxpython text entry dialog
-
- wxpython single choice dialog

-
루오니의 집 by 루오니|2011/10/25 14:23
if _name_ = '_main_': app = wx.PySimpleApp() dlg = wx.SingleChoiceDialog(None, 'What version of Python are you using?', 'Single Choice', ['1.5.2', '2.0', '2.1.3', '2.2', '2.3.1']) if dlg.ShowModal() = wx.ID_OK: respons..
- wxpython single choice dialog
-
- wxPython 멀티쓰레드 GUI 프로그래밍

-
묵호칼치 by 묵호칼치|2011/10/23 00:30
The main issue with multi-threaded GUI programming is the thread safty of the GUI itself. On most platforms the GUI is not thread safe and so any cross platform GUI Toolkit and ap..
- wxPython 멀티쓰레드 GUI 프로그래밍
-
-
- wxWidgets와 C++를 사용한 GUI 프로그래밍이 가능한 IDE

-
시험さま by 시험さま|2011/06/02 00:35
[1] wxWidgets와 C+를 사용한 GUI 프로그래밍이 가능한 IDE Code::Blocks 다양한 플랫폼 지원 (Linux, Windows, OSX, .)다양한 컴파일러를 지원한다. (gcc, mingw, msvc, bcc, dmc, openwatcom, .)gdb 통합. IDE를 통한 소스수준 디버깅 ..
- wxWidgets와 C++를 사용한 GUI 프로그래밍이 가능한 IDE
-
- wxPython, IDE, GUI 디자이너

-
시험さま by 시험さま|2011/05/31 15:14
wxPyWiki : UsingXmlResources GUI 디자이너 몇 개가 소개되어 있다. wxPyWiki : XRC Tutorial Nice IDE for wxPython or Tkinter GUI Development PyQt 등. My new love: Python + wxPython http://archlinux.me/drcouzelis/2010/11/15/my-new-love-py..
- wxPython, IDE, GUI 디자이너
-
- wxPython을 이용한 간단한 UI 예제

-
flexible gameserver by 자바워크|2010/01/27 16:58
wxPython은 크로스플랫폼 GUI 라이브러리인 wxWidget의 python 라이브러리 입니다. wxPython을 이용하면 몇줄 안되는 코드로 쉽게 UI를 만들수 있습니다. [wxPython runtime]이 라이브러리이고 ..
- wxPython을 이용한 간단한 UI 예제
-
- wxpython ..

-
Confusion will be my epitaph by epitaph|2009/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.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(콤보 박스)를 ..




