在我的WPF应用程序中,我有:
- > TextBox(textChanged)
- > 2个单选按钮
- >包含内容的ListView。 “作者”,“标题”。
我需要允许从Listview中搜索。
我的问题是:我应该如何检查radiobutton检查是否改变了?
正如评论中所提到的,WPVM首选WPF,然后绑定到IsChecked属性。
private bool _RadioButtonChecked;
public bool RadioButtonChecked
{
get => _RadioButtonChecked;
set
{
_RadioButtonChecked = value;
//Refresh filter here
}
}
Xaml绑定:
<RadioButton Content="RadioButton" IsChecked="{Binding RadioButtonChecked}"/>