changeset 87 | ee5ea9671f28 |
parent 86 | 0978fb755d31 |
child 89 | 94f5baef19ac |
--- a/demos/03_application.py Mon Mar 17 20:40:04 2014 +0100 +++ b/demos/03_application.py Mon Mar 17 23:44:18 2014 +0100 @@ -4,7 +4,11 @@ sys.path.append('..') from tuikit.core.application import Application +from tuikit.widgets.label import Label +label = Label('Hello there!') +label.pos.update(20, 10) app = Application() +app.root_window.add(label) app.start()