gpt4 book ai didi

c# - 如何在 WPF Mvvm 中检索动态生成的 RadioButtons 的选定 RadioButton

转载 作者:行者123 更新时间:2023-12-03 10:46:29 30 4
gpt4 key购买 nike

使用 WPF 和 MVVM 模式,我得到了一个动态填充单选按钮的列表框。

<ListBox ItemsSource="{Binding SupportedNtgs}"  VerticalAlignment="Stretch" Background="Transparent">                
<ListBox.ItemTemplate>
<DataTemplate>
<RadioButton GroupName="SupportedNtgsRadioButtonList" Content="{Binding Item2}" />
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>

在我的 ViewModel 中我得到了一个属性
    public Ntg SelectedNtg
{
get { return VariantInfo.Ntg; }

set
{
if (VariantInfo.Ntg == value) { return; }

VariantInfo.Ntg = value;

RaisePropertyChanged("SelectedNtg");
}
}
SupportedNtgs ListBox 绑定(bind)到的是 IEnumerable
public IEnumerable<Tuple<Ntg, String>> SupportedNtgs
{
get
{
if (this.supportedNtgs == null) {
this.supportedNtgs = new List<Tuple<Ntg, string>>();

foreach (var item in this.provider.SupportedNtgs) {
this.supportedNtgs.Add(new Tuple<Ntg, string>(item, EnumHelper<Ntg>.Description(item)));
}
}

return this.supportedNtgs;
}
}

谁能告诉我在我的 SelectedNtg 属性中存储用户选择的最简单方法是什么,而不对我的 Ntg 类进行任何更改?谢谢

谢谢你

最佳答案

干得好

  • 使用 SelectedNtg SelectedItem="{Binding SelectedNtg}" 添加对 SelectedItem 的绑定(bind)

  • 你的xml
    <ListBox ItemsSource="{Binding SupportedNtgs}" 
    VerticalAlignment="Stretch" Background="Transparent"
    SelectedItem="{Binding SelectedNtg}" >
    <ListBox.ItemTemplate>
    <DataTemplate>
    <RadioButton GroupName="SupportedNtgsRadioButtonList"
    Content="{Binding Item2}" />
    </DataTemplate>
    </ListBox.ItemTemplate>
    </ListBox>

    这会将所选项目推送到您的 View 模型中的属性,因此您将获得您正在寻找的数据

    关于c# - 如何在 WPF Mvvm 中检索动态生成的 RadioButtons 的选定 RadioButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24058896/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com