gpt4 book ai didi

wpf - 在 WPF 中将数据表与 ComboBox 绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 19:10:05 26 4
gpt4 key购买 nike

数据未显示在组合框中

DataTable dt = new DataTable();
dt.Columns.Add("Code");
dt.Columns.Add("Name");
dt.Rows.Add("c1", "n1");
dt.Rows.Add("c2", "n2");
myCombo.ItemsSource = ((IListSource)dt).GetList();
myCombo.DisplayMemberPath = "Code";
myCombo.SelectedValuePath = "Name";

最佳答案

代替这一行

myCombo.ItemsSource = ((IListSource)dt).GetList();

尝试使用这个

myCombo.ItemsSource = dt.DefaultView;

关于wpf - 在 WPF 中将数据表与 ComboBox 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3677843/

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