This commit is contained in:
2018-04-26 15:42:16 +02:00
parent 932e72c55d
commit dae75cf7c6
10 changed files with 116 additions and 0 deletions

6
Pass3/8 gui_example2.py Executable file
View File

@@ -0,0 +1,6 @@
import wx
app = wx.App(redirect=True)
top = wx.Frame(None, title="Hello World", size=(300,200))
top.Show()
app.MainLoop()