I have a winform with several buttons, when I hit a button, it runs the Click Event Handler, and then the button keeps selected, so if then I hit the ENTER key in the keyboard, it will run the Click event handler for that button again.
I guess this is the default behavior for a button (keeping it selected when its clicked) but I cant find a way to remove that behavior.
I tried the methods Focus()
and Select()
for another control, but the button is still Selected/Focused/Active
any help?