作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 WPF 复选框绑定(bind)到 ViewModel 可为 null 的 bool 属性。我在构造函数中将此属性设置为 false 或 true,以避免 Interminent 状态,但无论我做什么,复选框的初始状态都保持灰色。绑定(bind)工作得很好,因为一旦我通过单击 UI 上的复选框更改状态,我就会获得控件值 (true/false)。有什么想法吗?
XAML:
<CheckBox Margin="0,4,0,3"
VerticalAlignment="Center"
Content="Mutual"
IsChecked="{Binding MutualChb}" />
View 模型:
public ContstrutorViewModel()
{
MutualChb = true;
}
private bool? _mutualChb;
public bool? MutualChb
{
get { return _mutualChb; }
set
{
_mutualChb = value;
_mutualChb = ( _mutualChb != null ) ? value : false;
OnPropertyChanged("MutualChb");
}
}
最佳答案
这是因为它最初为空。
private bool? _mutualChb;
public bool? MutualChb
{
get { return (_mutualChb != null ) ? _mutualChb : false; }
set
{
_mutualChb = value;
OnPropertyChanged("MutualChb");
}
}
关于c# - WPF 将复选框绑定(bind)到 bool?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28383536/
我是一名优秀的程序员,十分优秀!