我是
靠谱客的博主
忧虑手链,最近开发中收集的这篇文章主要介绍
python-gtk-3-tutorial(1) Getting Started,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
Getting Started
File:simple_example.py
#!/usr/bin/python
from gi.repository import Gtk
win = Gtk.Window()
win.connect("delete-event", Gtk.main_quit)
win.show_all()
Gtk.main()
Let me explain:
(1) from gi.repository import Gtk
To import Gtk class from gi.repository
(2) win = Gtk.Window()
To create a empty windows object.
(3) win.connect("delete-event", Gtk.main_quit)
To connect the window's delete event.
(4) win.show_all()
we display the window
Gtk.main()
we start the GTK+ processing loop which we quit when the window is closed (see line 5).
最后
以上就是忧虑手链为你收集整理的python-gtk-3-tutorial(1) Getting Started的全部内容,希望文章能够帮你解决python-gtk-3-tutorial(1) Getting Started所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复