Reputation: 577
I have a Button WPF control, and I don't want user pressing the button with an Enter key. I want to make it possible to click a button only with a mouse click.
Button
Is it possible in WPF?
Upvotes: 0
Views: 218
Reputation: 164
Try setting the button's Focusable Property to False.
Upvotes: 3