A-M baby
This commit is contained in:
parent
764da6cbbb
commit
db842d013d
19005 changed files with 197040 additions and 7 deletions
|
|
@ -0,0 +1,3 @@
|
|||
import tkMessageBox
|
||||
|
||||
result = tkMessageBox.showinfo("Some Window Label", "Goodbye, World!")
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
from tkinter import messagebox
|
||||
|
||||
result = messagebox.showinfo("Some Window Label", "Goodbye, World!")
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import PyQt4.QtGui
|
||||
app = PyQt4.QtGui.QApplication([])
|
||||
pb = PyQt4.QtGui.QPushButton('Hello World')
|
||||
pb.connect(pb,PyQt4.QtCore.SIGNAL("clicked()"),pb.close)
|
||||
pb.show()
|
||||
exit(app.exec_())
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
import pygtk
|
||||
pygtk.require('2.0')
|
||||
import gtk
|
||||
|
||||
window = gtk.Window()
|
||||
window.set_title('Goodbye, World')
|
||||
window.connect('delete-event', gtk.main_quit)
|
||||
window.show_all()
|
||||
gtk.main()
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
import wx
|
||||
|
||||
app = wx.App(False)
|
||||
frame = wx.Frame(None, wx.ID_ANY, "Hello, World")
|
||||
frame.Show(True)
|
||||
app.MainLoop()
|
||||
Loading…
Add table
Add a link
Reference in a new issue