-2

誰かが私を助けることができますか?ListBox の Datatemplate に RadioButton のリストをバインドしたいのですが、RadioButtonList として機能していません。つまり、同時に複数の RB を選択できるようになっています。オンラインで調べましたが、正しい答えが見つかりませんでした助けてくれてありがとう

私のxamlは次のとおりです

 <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