I'm making a simple little utility while learning Python. It dynamically generates a list of buttons:
for method in methods:
button = Button(self.methodFrame, text=method, command=self.populateMethod)
button.pack({'fill': 'x', 'expand': 1, 'padx': 5, 'pady': 3})
That part works fine. However, I need to know which of the buttons was pressed inside self.populateMethod
. Any advice on how I might be able to tell?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…