ResponseButton
Enum
Specifies response buttons in window that will act as default buttons upon keyboard strokes. Used by ResponseButton attached property.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Navigation.dll
Syntax:
C#
public enum ResponseButton
Fields
Accept will invoke the button's click method when the user hits Enter.
C#
Accept = 1
Cancel will invoke the button's click method when the user hits ESC.
C#
Cancel = 2
None will not invoke the button's click method automatically.
C#
None = 0