- 590 名前:デフォルトの名無しさん mailto:sage [2008/12/18(木) 23:06:32 ]
- >>586
コマンドラインからでもウィンドウを表示できることは理解されているでしょうか? $ python Type "help", "copyright", "credits" or "license" for more information. >>> import wx >>> class MyApp(wx.App): ... def OnInit(self): ... frame = wx.Frame(None, 0, "Title") ... frame.Show(True) ... self.SetTopWindow(frame) ... return True ... >>> app = MyApp(0) >>> app.MainLoop() # ←ここで中身が何もないウィンドウが出る。 >>>
|

|