适用于TK的Python GUI工具包(GUITk)
概要
GUITk是设计一个轻量级的框架,它简化了创建简单的GUI实验。
程式码范例
"""Simple Hello World example using guitk """
import guitk
class HelloWindow ( guitk . Window ):
def config ( self ):
self . layout = [
[ guitk . Label ( "What's your name?" )],
[ guitk . Entry ( key = "name" )],
[ guitk . Button ( "Ok" )],
]
self . title = "Hello, W
评论0
最新资源