匿名 #336(2007/07/08 06:20 GMT) [ Python ] Rating1/1=1.00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# coding: shift_jis import Tkinter as Tk root = Tk.Tk() root.title(u"こんにちは、GUI!") w = 400 h = 300 root.geometry("%dx%d+%d+%d" % (w, h, (root.winfo_screenwidth() - w) / 2, (root.winfo_screenheight() - h) / 2)) root.mainloop()
Rating1/1=1.00-0+
[ reply ]
匿名
#336()
[
Python
]
Rating1/1=1.00
Rating1/1=1.00-0+
[ reply ]