Button::IsCancel Property
.NET Framework (current version)
Gets or sets a value that indicates whether a Button is a Cancel button. A user can activate the Cancel button by pressing the ESC key.
Assembly: PresentationFramework (in PresentationFramework.dll)
When you set the IsCancel property of a button to true, you create a Button that is registered with the AccessKeyManager. The button is then activated when a user presses the ESC key.
Identifier field | |
Metadata properties set to true | None |
The following example shows how to use this property to create a Cancel button.
<Button Name="btnCancel" IsCancel="true" Click="OnClickCancel">Cancel</Button>
.NET Framework
Available since 3.0
Available since 3.0
Show: