绑定列表到组合框

发布于 2024-12-03 02:09:53 字数 363 浏览 0 评论 0原文

我希望从列表中获取组合框项目名称和值 当然,我不希望我的视图模型包含组合框项目列表。

我有一个列表 a,b,c,d

我希望我的组合框包含项目

我的视图模型得到了

public List<string> PropsList { get; set; }

我的视图得到了

<ComboBox Name="cbPropName" ItemsSource="PropsList"/>

它给了我 与 Props L ist 组合

:(

I want my combobox item names and values to be taken from my List
of course I don't want my view model to hold combobox items list.

I got a list a,b,c,d

i want my combobox to have items

my viewmodel got

public List<string> PropsList { get; set; }

my view got

<ComboBox Name="cbPropName" ItemsSource="PropsList"/>

it gives me
combo with P r o p s L i s t

:(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

瞄了个咪的 2024-12-10 02:09:53

Nahum,你必须使用 ItemsSource="{Binding PropsList}",假设 PropsList 是代码隐藏中的依赖属性,或者更好的是,数据上下文中实现 INotifyPropertyChanged 的​​属性。在您的情况下,您必须将视图的 DataContext 属性设置为 ViewModel

Nahum you'll have to use ItemsSource="{Binding PropsList}", assuming PropsList is a Dependancy property in your code behind or, even better, a property in your data context that implements INotifyPropertyChanged. In your case you'd have to set the DataContext property of your View to be the ViewModel

昇り龍 2024-12-10 02:09:53

试试这个:

 <ComboBox Name="cbPropName" ItemsSource="{Binding Path=PropsList}" />

也看看这个:将 WPF ComboBox 绑定到自定义列表

try this:

 <ComboBox Name="cbPropName" ItemsSource="{Binding Path=PropsList}" />

also check this out: Binding WPF ComboBox to a Custom List

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文