Python Forum

Full Version: SetValue to get event fired
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
self.myRadioButton has an event function setup: On_Click_myRadioButton(self, event).
When click on it, the function is run. Is it possible to get the event function run when using self.myRadioButton.SetValue(True) ? Thanks.
What GUI package?
If tkinter: you can get the event that triggered with event.widget in event handler method