ToggleButton.IsThreeState 属性

定义

获取或设置一个值,该值指示控件是否支持三种状态。

public:
 property bool IsThreeState { bool get(); void set(bool value); };
bool IsThreeState();

void IsThreeState(bool value);
public bool IsThreeState { get; set; }
var boolean = toggleButton.isThreeState;
toggleButton.isThreeState = boolean;
Public Property IsThreeState As Boolean
<togglebutton IsThreeState="bool"/>

属性值

Boolean

bool

如果控件支持三种状态,则其值为 True;否则为 false。 默认值为 false

注解

ToggleButton 和 可以有三种状态:

State 属性
已选中 IsChecked true
取消选中 IsChecked false
不确定 IsChecked null

若要使 ToggleButton 报告不确定状态,必须将 IsThreeState 属性设置为 true

注意

ToggleButton 对于不确定状态和未选中状态具有相同的视觉状态。 派生控件(如 CheckBox)可以为每个状态定义不同的视觉状态。

适用于