WPF ToggleButton绑定不起作用

时间:2017-03-24 00:13:45

标签: c# wpf

我有两个ToggleButtons;我试图通过将它们绑定到布尔值来使它们像一对单选按钮一样,但它不起作用。这就是我到目前为止所拥有的:

<ToggleButton Name="YesButton" Margin="5,0" Width="100" IsChecked="{Binding YesBool, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">Yes!</ToggleButton>

<ToggleButton Name="NoButton" Margin="5,0" Width="100" IsChecked="{Binding NoBool, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">No!</ToggleButton>

public partial class MainWindow : Window
{
    public MainWindow()
    {
        DataContext = this;
        InitializeComponent();
    }
}

public class Thingy : INotifyPropertyChanged
{
    private bool _yesno;

    public bool YesBool
    {
        get { return _yesno; }
        set { _yesno = value; NotifyPropertyChanged("YesBool"); }
    }

    public bool NoBool
    {
        get { return !_yesno; }
        set { _yesno = !value; NotifyPropertyChanged("NoBool"); }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    public void NotifyPropertyChanged(string propertyName)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }
}

据我所知,遇到这个问题的其他人拼错了他们的绑定或者没有使用NotifyPropertyChanged,但是(据我所知)我做了这两件事。我做错了什么?

2 个答案:

答案 0 :(得分:0)

将xaml中的DataContext设置为Thingy类而不是&#34;这个&#34;窗口。

答案 1 :(得分:0)

你的问题没有说明是否需要布尔值,或者只是为了帮助你获得想要的行为。

因此,如果您不需要它们,您还可以选择一个功能,取消选中另一个按钮。这也可以用于2个以上的ToggleButtons 如果你可以肯定除了ToggleButtons之外没有其它的控件,你也可以选择没有类型检查的foreach循环。

public void ToggleButtonChecked(object sender, RoutedEventArgs e)
    {
        ToggleButton btn = sender as ToggleButton;
        if (btn == null)
            return;
        Panel container = btn.Parent as Panel;
        if (container == null)
            return;

        for (int i = 0; i<container.Children.Count; i++)
        {
            if (container.Children[i].GetType() == typeof(ToggleButton))
            {
                ToggleButton item = (ToggleButton)container.Children[i];
                if (item != btn && item.IsChecked == true)
                    item.IsChecked = false;
            }
        }
    }

XAML

<ToggleButton x:Name="tb1" Checked="ToggleButtonChecked"/>