如何从我的框架中单击按钮获取值?
btnYes = wx.Button(panel, -1, "OK")
self.Bind(wx.EVT_BUTTON, self.clickYes, btnYes)
def clickYes(self, evt):
print "clicked Yes"
self.Close()
每当用户单击是时,我都想获取一个值以检查其他模块。类似确认标志的东西。当用户确认一项时,然后进行其他项。我将使用的确认标志如下:
def my_methodABC():
matchList = []
for x, y in product(d1rows, d2rows):
if userConfirmedFromWxPythonClickYesButton():
matchList.append(abc)
return matchList