检查Radiobutton已经改变了WPF

问题描述 投票:0回答:2

在我的WPF应用程序中,我有:

- > TextBox(textChanged)

- > 2个单选按钮

- >包含内容的ListView。 “作者”,“标题”。

我需要允许从Listview中搜索。

我的问题是:我应该如何检查radiobutton检查是否改变了?

c# wpf textbox radio-button
2个回答
0
投票

正如评论中所提到的,WPVM首选WPF,然后绑定到IsChecked属性。

private bool _RadioButtonChecked;
public bool RadioButtonChecked
{
    get => _RadioButtonChecked;
    set
    {
        _RadioButtonChecked = value;
        //Refresh filter here
    }
}

Xaml绑定:

<RadioButton Content="RadioButton" IsChecked="{Binding RadioButtonChecked}"/>

除此之外,您还可以使用CheckedUnChecked事件。

© www.soinside.com 2019 - 2024. All rights reserved.