ICheckableCommandParameter Interface
Provides the base requirements for the command parameter of a checkable control that specifies its checked state.
public interface ICheckableCommandParameter
Properties
Handled
Gets or sets whether the parameter has been handled.
bool Handled { get; set; }
Property Value
- bool:
true
if the parameter has been handled; otherwise,false
.
IsChecked
Gets or sets whether the control is checked.
bool? IsChecked { get; set; }
Property Value
- bool?:
true
if the control is checked; otherwise,false
.
Tag
Gets or sets an arbitrary object value that can be used to store custom information about this element.
object Tag { get; set; }
Property Value
- object:
The intended value. This property has no default value.