wxpython

时间:2017-06-03 21:14:00

标签: python python-2.7 python-3.x wxpython wxwidgets

我想在测试框中收集用户的输入。因此,当我单击一个按钮时,它应该在测试框中给我该按钮的名称 错误:您应该省略列的任何行

   for i in A:


        hbox1=wx.BoxSizer(wx.HORIZONTAL)



        btn = wx.Button(p, -1, i, (10,20)) 


        btn.myname = I


        gs.Add(btn,0,)


        self.Bind(wx.EVT_BUTTON, self.OnClick, btn)


        self.t1=wx.TextCtrl(p)


        gs.Add(btn,0,)    


        self.t1.Bind(wx.EVT_BUTTON, self.OnClick, btn)


        gs.Add(hbox1)

    p.SetSizer(gs)


def OnClick(self, event):  #When the button is clicked

    name = event.GetEventObject().myname

1 个答案:

答案 0 :(得分:2)

使用 wx .TextCtrl:self.t1=wx.TextCtrl(p)