如何将 ListView 链接到 ModelView?
我想在 ModelView 中创建一个包含产品名称和代码的 ListView
,但是当我这样做时:
<ListView ItemsSource="{Binding Path=Products}"
SelectedValue="{Binding Path=Product}" />
仅显示产品指南。
如何创建一个具有 Product.Name
属性的列和另一个具有 Product.Code
属性的列?
I want to create a ListView
with the names and the codes of the products in my ModelView but when I do:
<ListView ItemsSource="{Binding Path=Products}"
SelectedValue="{Binding Path=Product}" />
Only the Product Guids are showed.
How could I create a column with the Product.Name
property and another onew with the Product.Code
property?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用网格视图。也许像这样:
Use a GridView. Perhaps like this: