Show window
This program will use wxPython to make things more portable.
This commit is contained in:
commit
2c64cdd692
|
@ -0,0 +1,6 @@
|
|||
import wx
|
||||
import mainwin
|
||||
|
||||
app = wx.App(False)
|
||||
mainwin.MainWin()
|
||||
app.MainLoop()
|
|
@ -0,0 +1,6 @@
|
|||
import wx
|
||||
|
||||
class MainWin(wx.Frame):
|
||||
def __init__(self):
|
||||
wx.Frame.__init__(self, None, wx.ID_ANY, "Dagon Controller")
|
||||
self.Show(True)
|
Reference in New Issue