Frage

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?

War es hilfreich?

Lösung

It's the IsDefault property on the Button:

<Button IsDefault="true">OK</Button>
Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top