Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

DataGrid creating RadioButton column

I have objects bound to a DataGrid. I have created a radio button column bound to the Is Default property of the object.

When the app starts up the correct item is shown as default, however the binding is then never updated. The behaviour I would like is for the user to check a radio box and for that object to become the default.

        <DataGrid CanUserAddRows="False" AutoGenerateColumns="False" Name="TEst" >
        <DataGrid.Columns >
            <DataGridTextColumn Header="Value" Binding="{Binding Path=Name, Mode=OneTime}"/>

            <DataGridTemplateColumn Header="Is Default">
                <DataGridTemplateColumn.CellTemplate>
                    <DataTemplate>
                        <RadioButton GroupName="Test" IsChecked="{Binding IsDefault}" />
                    </DataTemplate>
                </DataGridTemplateColumn.CellTemplate>
            </DataGridTemplateColumn>

        </DataGrid.Columns>
    </DataGrid>

 private class Test : INotifyPropertyChanged
    {
        public string Name
        {
            get;
            set;
        }
        bool isDefult;
        public bool IsDefault
        {
            get
            {
                return isDefult;
            }
            set
            {
                isDefult = value;
            }
        }

        public event PropertyChangedEventHandler PropertyChanged;
    }

    public MainWindow()
    {
        this.InitializeComponent();
        Test[] ya = new Test[] { new Test { Name = "1", IsDefault = false }, new Test { Name = "2", IsDefault = false }, new Test { Name = "3", IsDefault = true } };

        this.TEst.ItemsSource = ya;
    }

I’ve been pulling my hair out all afternoon at this. Any help would be loved.

like image 486
Dan H Avatar asked Mar 24 '11 17:03

Dan H


2 Answers

It's quite strange, but all that you have to do is to change the binding of the RadioButton:

<RadioButton GroupName="Test" IsChecked="{Binding IsDefault, UpdateSourceTrigger=PropertyChanged}" />

As far as I know, the default value is LostFocus, but there are some problems with focus inside DataGrid. I don't know why the problem happens.

And another issue: raise the PropertyChanged event inside the setter of the IsDefault property. Now everything works fine without notifications, but if you add more xaml code it will be dificult to find out why the UI isn't updated.

like image 164
vortexwolf Avatar answered Oct 24 '22 01:10

vortexwolf


Setting UpdateSourceTrigger=PropertyChanged is not enough here. You also need Mode=TwoWay

like image 20
white.zaz Avatar answered Oct 23 '22 23:10

white.zaz