Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data/es/tutorials/Tutorial_07_gtk_ventana_basica.py
blob: 64333d1b21d81e949d222250b0fcb6e3bd883807 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from gi.repository import Gtk

class PyApp(Gtk.Window):

    def __init__(self):
        super(PyApp, self).__init__()
        self.set_title("Hola mundo!!")
        self.connect("destroy", Gtk.main_quit)
        self.set_size_request(250, 150)
        self.show()

PyApp()
Gtk.main()