gpt4 book ai didi

c# - 将简单的 List 绑定(bind)到 Combobox

转载 作者:太空宇宙 更新时间:2023-11-03 22:03:47 25 4
gpt4 key购买 nike

我想将我的类(class)列表绑定(bind)到 WPF 中的 CombpBox。我觉得应该很简单。

我尝试了代码,但它不起作用:

    public MainWindow()
{

InitializeComponent();

List<SimpleClass> ListData = new List<SimpleClass>();
ListData.Add(new SimpleClass { Id = "1", Value = "One" });
ListData.Add(new SimpleClass { Id = "2", Value = "Two" });
ListData.Add(new SimpleClass { Id = "3", Value = "Three" });
ListData.Add(new SimpleClass { Id = "4", Value = "Four" });
ListData.Add(new SimpleClass { Id = "5", Value = "Five" });


comboBox1.DataContext = ListData;
comboBox1.DisplayMemberPath = "{Binding Path=Value}";
comboBox1.SelectedValuePath = "{Binding Path=Id}";


}
}
public class SimpleClass
{
public string Id;
public string Value;
}

XAML如下

 <ComboBox Height="23" HorizontalAlignment="Left" Margin="221,107,0,0" Name="comboBox1" ItemsSource="{Binding}" VerticalAlignment="Top" Width="120" />

我做错了什么?

最佳答案

应该是

comboBox1.DisplayMemberPath = "Value";
comboBox1.SelectedValuePath = "Id";

在后面的代码中,您不能通过设置字符串来分配绑定(bind),这有点复杂。在这种情况下,DisplayMemberPathSelectedValuePath 只需要属性名称,而不需要绑定(bind)。

关于c# - 将简单的 List<myClass> 绑定(bind)到 Combobox,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9174765/

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