Window creation: Difference between revisions

m
Line 1,804:
{{works with|Python|2.4 and 2.5}}
 
==={{libheader|Tkinter}}===
<lang python> import Tkinter
Line 1,810:
w.mainloop()</lang>
 
==={{libheader|wxPython}}===
<lang python> from wxPython.wx import *
Line 1,823:
app.MainLoop()</lang>
 
==={{libheader|Pythonwin}}===
<lang python> import win32ui
from pywin.mfc.dialog import Dialog
Line 1,830:
d.CreateWindow()</lang>
 
==={{libheader|PyGTK}}===
<lang python> import gtk
Line 1,837:
gtk.main()</lang>
 
==={{libheader|PyQT}}===
<lang python> from PyQt4.QtGui import *
 
Anonymous user