- Testing thing.
This commit is contained in:
parent
c1b44804e1
commit
c1c53e8e2c
14
gui/bare.py
Executable file
14
gui/bare.py
Executable file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import wx
|
||||
|
||||
class App(wx.App):
|
||||
|
||||
def OnInit(self):
|
||||
frame = wx.Frame(parent=None, title='Bare')
|
||||
frame.Show(1)
|
||||
return True
|
||||
|
||||
app = App()
|
||||
app.MainLoop()
|
||||
|
Loading…
Reference in New Issue
Block a user