-2

有人能帮我吗?我想在 ListBox 的 Datatemplate 中绑定 RadioButtons 列表,但它不充当 RadioButtonList,即它可以同时选择多个 RB。我在网上看了但找不到正确的答案 感谢您的帮助

我的xml如下

 <ItemsControl x:Name="itcPayTypes" DockPanel.Dock="Top" BorderThickness="0">
            <ItemsControl.ItemsPanel>
                <ItemsPanelTemplate>
                    <StackPanel Orientation="Horizontal" />
                </ItemsPanelTemplate>
            </ItemsControl.ItemsPanel>
            <ItemsControl.ItemTemplate>
                <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                            <RadioButton Content="{Binding PayTypeName}"  Click="RadioButton_Click_1"/>
                        </StackPanel>
                </DataTemplate>
            </ItemsControl.ItemTemplate>
        </ItemsControl>
4

1 回答 1

0

嗨,为所有 RadioButtons 设置相同的 GroupName。我希望这将有所帮助。

<StackPanel Orientation="Horizontal">
     <RadioButton Content="{Binding PayTypeName}" GroupName="abc" Click="RadioButton_Click_1"/>
</StackPanel>
于 2013-03-04T16:11:27.530 回答