Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1,4 @@
import Tkinter
w = Tkinter.Tk()
w.mainloop()

View file

@ -0,0 +1,4 @@
import tkinter
w = tkinter.Tk()
w.mainloop()

View file

@ -0,0 +1,11 @@
from wxPython.wx import *
class MyApp(wxApp):
def OnInit(self):
frame = wxFrame(NULL, -1, "Hello from wxPython")
frame.Show(true)
self.SetTopWindow(frame)
return true
app = MyApp(0)
app.MainLoop()

View file

@ -0,0 +1,5 @@
import win32ui
from pywin.mfc.dialog import Dialog
d = Dialog(win32ui.IDD_SIMPLE_INPUT)
d.CreateWindow()

View file

@ -0,0 +1,5 @@
import gtk
window = gtk.Window()
window.show()
gtk.main()

View file

@ -0,0 +1,7 @@
from PyQt4.QtGui import *
app = QApplication([])
win = QWidget()
win.show()
app.exec_()