Analogue of AcceptButton property in WPF window class?

2.1k views Asked by At

The Form class of windows forms has the AcceptButton property, which allows certain button to be clicked when a user press Enter. Does the Window class of WPF has similar feature?

1

There are 1 answers

2
Botz3000 On BEST ANSWER

It's the IsDefault property on the Button:

<Button IsDefault="true">OK</Button>