0

使用可重用的用户控件时,我遇到了 RadioButton 的问题。由于某种原因,我无法检查每个“ Chooser”控件的单选按钮,但是当检查一个单选按钮时,当前选择器中的所有其他广播按钮以及其他选择器中都没有选中。有谁知道如何更改此代码,以便我可以在每个“选择器”用户控件中检查项目。用户控件必须能够使用集合动态构建。在现实世界的示例中,每个“选择器”用户控件将具有不同的文本值。

主页.xaml

<StackPanel x:Name="LayoutRoot" Background="White">
    <radioButtonTest:Chooser />
    <radioButtonTest:Chooser />
    <radioButtonTest:Chooser />
</StackPanel>

选择器.xaml

<UserControl x:Class="RadioButtonTest.Chooser"
    xmlns ...>

    <StackPanel x:Name="LayoutRoot" Orientation="Horizontal">
        <TextBlock x:Name="MyLabel" Text="Choices:" VerticalAlignment="Center" Margin="0,0,10,0" />
        <ItemsControl x:Name="MyChooser" Height="25" VerticalAlignment="Top" HorizontalAlignment="Left">
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <StackPanel Orientation="Horizontal" />
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                    <RadioButton Height="22" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Content="{Binding}" MinWidth="35" />
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
    </StackPanel>
</UserControl>

选择器.xaml.cs

public partial class Chooser
{
    public Chooser()
    {
        InitializeComponent();

        // adding some test items to the itemscontrol
        MyChooser.ItemsSource = new ObservableCollection<string>
                                    {
                                        "first",
                                        "second",
                                        "third"
                                    };
    }
}
4

1 回答 1

1

结果我需要使用 RadioButton 的 GroupName 属性来指示分组。为此,我将项目源更改为具有字符串类型 Group 属性的自定义类,并将此属性绑定到 RadioButton 上的 GroupName 属性。

XAML:

<DataTemplate>
    <RadioButton ... Content="{Binding Name}" GroupName="{Binding Group}" />
</DataTemplate>

C#:

public Chooser()
{
    InitializeComponent();

    // the groupName needs to be the same for each item 
    // in the radio group, but unique for each separate group.
    var groupName = Guid.NewGuid().ToString();
    MyChooser.ItemsSource = new ObservableCollection<RadioButtonGroupItem>
        {
            new RadioButtonGroupItem {Group = groupName, Name = "first"},
            new RadioButtonGroupItem {Group = groupName, Name = "second"},
            new RadioButtonGroupItem {Group = groupName, Name = "third"}
        };
}

public class RadioButtonGroupItem
{
    public string Name { get; set; }
    public string Group { get; set; }
}

希望这可以帮助某人。

于 2012-12-17T00:10:59.620 回答