binding radiobuttons group to a property in WPF binding radiobuttons group to a property in WPF wpf wpf

binding radiobuttons group to a property in WPF


Declare an enumeration similar to:

enum RadioOptions {Option1, Option2}

XAML:

<RadioButton IsChecked="{Binding SelectedOption, Converter={StaticResource EnumBooleanConverter}, ConverterParameter={x:Static local:RadioOptions.Option1}}"/><RadioButton IsChecked="{Binding SelectedOption, Converter={StaticResource EnumBooleanConverter}, ConverterParameter={x:Static local:RadioOptions.Option2}}"/>

Converter class:

public class EnumBooleanConverter : IValueConverter{    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)    {        return value.Equals(parameter);    }    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)    {        return ((bool)value) ? parameter : Binding.DoNothing;    }}


<RadioButton GroupName="Group1" IsChecked="{Binding Path=SelectedRadioButton, Converter={StaticResource EnumBooleanConverter}, ConverterParameter=RadioButton1}" /><RadioButton GroupName="Group1" IsChecked="{Binding Path=SelectedRadioButton, Converter={StaticResource EnumBooleanConverter}, ConverterParameter=RadioButton2}" />
public enum RadioButtons { RadioButton1, RadioButton2, None }public RadioButtons SelectedRadioButton {get;set;} public class EnumBooleanConverter : IValueConverter    {        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)        {            var ParameterString = parameter as string;            if (ParameterString == null)                return DependencyProperty.UnsetValue;            if (Enum.IsDefined(value.GetType(), value) == false)                return DependencyProperty.UnsetValue;            object paramvalue = Enum.Parse(value.GetType(), ParameterString);            return paramvalue.Equals(value);        }        public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)        {            var ParameterString = parameter as string;            var valueAsBool = (bool) value;            if (ParameterString == null || !valueAsBool)            {                try                {                    return Enum.Parse(targetType, "0");                }                catch (Exception)                {                    return DependencyProperty.UnsetValue;                }            }            return Enum.Parse(targetType, ParameterString);        }    }


We can create the radio buttons dynamically, ListBox can help us do that, without converters, quite simple.

The advantage is below:if someday your enum class changes, you do not need to update the GUI (XAML file).

The steps are below:create a ListBox and set the ItemsSource for the listbox as the enum and binding the SelectedItem of the ListBox to the Selected property.Then the Radio Buttons for each ListBoxItem will be created.

public enum RadioButtons{    RadioButton1,    RadioButton2,    None}
  • Step 1: add the enum to static resources for your Window, UserControl or Grid etc.
    <Window.Resources>        <ObjectDataProvider MethodName="GetValues"                            ObjectType="{x:Type system:Enum}"                            x:Key="RadioButtons">            <ObjectDataProvider.MethodParameters>                <x:Type TypeName="local:RadioButtons" />            </ObjectDataProvider.MethodParameters>        </ObjectDataProvider>    </Window.Resources>
  • Step 2: Use the List Box and Control Template to populate each item inside as Radio button
    <ListBox ItemsSource="{Binding Source={StaticResource RadioButtons}}" SelectedItem="{Binding SelectedRadioButton, Mode=TwoWay}" >        <ListBox.Resources>            <Style TargetType="{x:Type ListBoxItem}">                <Setter Property="Template">                    <Setter.Value>                        <ControlTemplate>                            <RadioButton                                Content="{TemplateBinding ContentPresenter.Content}"                                IsChecked="{Binding Path=IsSelected,                                RelativeSource={RelativeSource TemplatedParent},                                Mode=TwoWay}" />                        </ControlTemplate>                    </Setter.Value>                </Setter>            </Style>        </ListBox.Resources>    </ListBox>

Now, enjoy~

References:https://brianlagunas.com/a-better-way-to-data-bind-enums-in-wpf/