单击我的“浏览”按钮时,我的文本框“tc1”中的文本不会改变。我收到“未定义全局名称'tc1'”的控制台错误。我只想在单击 button1 时更改 tc1 的文本
Python:
def InitUI(self):
panel = wx.Panel(self)
button1 = wx.Button(panel, label="Browse...")
button1.Bind(wx.EVT_BUTTON, self.OnBrowse)
tc1 = wx.TextCtrl(panel, -1, "Text")
def OnBrowse(self, event):
return tc1.SetValue("New Text")