Search:
GitHub Login
Preferences
My Notifications
Tickets
Wiki
GitHub
Timeline
Roadmap
Ticket Reports
Search
Context Navigation
Back to Ticket #67280
Ticket #67280
: pygtk-entry-test.py
File pygtk-entry-test.py,
190 bytes
(added by
Akkiesoft (Akira Ouchi)
,
19 months ago
)
Line
1
import
gi
2
gi
.
require_version
(
"Gtk"
,
"3.0"
)
3
from
gi.repository
import
Gtk
4
win
=
Gtk
.
Window
()
5
entry
=
Gtk
.
Entry
()
6
win
.
add
(
entry
)
7
win
.
connect
(
"destroy"
,
Gtk
.
main_quit
)
8
win
.
show_all
()
9
Gtk
.
main
()
Download in other formats:
Original Format