コード例 #1
0
ファイル: Frames.py プロジェクト: arkorsky/Client
 def __init__(self,cashMoney,GoodsData):
    wx.Frame.__init__(self, None, -1, u"收款明细",size=(800,600),style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
    self.Bind(wx.EVT_CLOSE,self.ClosegetMoneyFrame)
    self.Centre()
    Panels.getMoneyPage(self,cashMoney,GoodsData)
    self.Show()