simple.py
来自「使用Pygtk写的几个例子」· Python 代码 · 共 30 行
PY
30 行
#!/usr/bin/env python# translation of the simple.c test in the gtk+ distribution, using the# new() function from gobject (this is an example of creating objects# with the properties interface).import gobject, gtkdef hello(*args): print "Hello World" window.destroy()def destroy(*args): window.hide() gtk.main_quit()window = gobject.new(gtk.Window, type=gtk.WINDOW_TOPLEVEL, title='Hello World', allow_grow=False, allow_shrink=False, border_width=10)window.connect("destroy", destroy)button = gobject.new(gtk.Button, label="Hello World", parent=window)button.connect("clicked", hello)window.show_all()gtk.main()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?