morchin #107(2007/07/04 05:39 GMT) [ Python ] Rating2/2=1.00
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# -*- coding: utf-8 -*- import clr clr.AddReference("System.Windows.Forms") clr.AddReference("System.Drawing") from System.Windows.Forms import Form, FormStartPosition, Application from System.Drawing import Size class HelloForm(Form): def __init__(self): self.Text = u'こんにちは、GUI' self.StartPosition = FormStartPosition.CenterScreen self.Size = Size(100, 75) if __name__ == '__main__': Application.Run(HelloForm())
Rating2/2=1.00-0+
[ reply ]
morchin
#107()
[
Python
]
Rating2/2=1.00
Rating2/2=1.00-0+
[ reply ]