そのため、thenewboston.com のビデオを使用して wxpython を学ぼうとしましたが、このコードを実行すると空白の灰色のウィンドウしか表示されません。コードでサイズを変更しても、ウィンドウのサイズは変わりません! また、ウィンドウのタイトル、ボタン、およびパネルは空白では表示されません。私は Linux Mint を使用しているので、これが原因である可能性があります。これを修正するのを手伝ってください!
import wx
class mainApp(wx.Frame):
def __init_(self,parent,id):
wx.Frame.__init__(self,parent,id,title = 'Frame aka Window',size=(800,900))
panel=wx.Panel(self)
buttonExit=wx.Button(panel,label="Quit", pos=(50,50),size=(60,60))
self.Bind(wx.EVT_BUTTON,self.closebutton,buttonExit)
self.Bind(wx.EVT_CLOSE,self.closewindow)
def closebutton(self,event):
self.Close(True)
def closewindow(self,event):
self.Destroy()
if __name__ == '__main__':
app = wx.PySimpleApp()
frame=mainApp(parent=None,id=-1)
frame.Show()
app.MainLoop()
前もって感謝します :)