Button.IsCancel Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.
public:
property bool IsCancel { bool get(); void set(bool value); };
public bool IsCancel { get; set; }
member this.IsCancel : bool with get, set
Public Property IsCancel As Boolean
Property Value
true
if the Button is a Cancel button; otherwise, false
. The default is false
.
Examples
The following example shows how to use this property to create a Cancel button.
<Button Name="btnCancel" IsCancel="true" Click="OnClickCancel">Cancel</Button>
Remarks
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.
Dependency Property Information
Identifier field | IsCancelProperty |
Metadata properties set to true |
None |