Guest User

Untitled

a guest
Aug 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.20 KB | None | 0 0
  1. from gi.repository import Gtk
  2.  
  3. win = Gtk.Window()
  4. win.set_default_size(320, 240)
  5. win.connect("delete-event", Gtk.main_quit)
  6. win.set_position(Gtk.WindowPosition.CENTER)
  7. win.show_all()
  8. Gtk.main()
Add Comment
Please, Sign In to add comment