Heim  >  Fragen und Antworten  >  Hauptteil

wxpython - Python如何在一个函数中调用另一个函数的对象

大家讲道理大家讲道理2764 Tage vor404

Antworte allen(2)Ich werde antworten

  • 黄舟

    黄舟2017-04-18 09:29:02

    试试 self.panel()

    Antwort
    0
  • 阿神

    阿神2017-04-18 09:29:02

    def __init__(self):
        wx.Frame.__init__(self,None," ",(0,0),(100,100))
        self.panel = wx.Panel(self,-1)
    def a(self):
        print self.panel

    Antwort
    0
  • StornierenAntwort