列表框选择模式=扩展绑定到数据表。需要使用 MVVM light 在按钮单击时获取所选项目
我有一个列表框
<ListBox x:Name="lbFamilies" Margin="41,45,38.25,111" ToolTip="Select the tables to seed" ItemsSource="{Binding ManTntFmly.FmlyList}" ItemTemplate="{StaticResource listBoxTemplate}" SelectionMode="Extended"/>
FmlyList 是一个使用 DataBinding 绑定的数据表。
我需要找出所有项目 已从其中选择的 列表框。我该如何使用 查看模型?
此外,我如何获得密钥 被传递而不是值 在选择过程中?
I have a listbox
<ListBox x:Name="lbFamilies" Margin="41,45,38.25,111" ToolTip="Select the tables to seed" ItemsSource="{Binding ManTntFmly.FmlyList}" ItemTemplate="{StaticResource listBoxTemplate}" SelectionMode="Extended"/>
The FmlyList is a Datatable which is bound using DataBinding.
I need to find out all the items
which have been selected from the
listbox. How do I do that using the
view model?Additionally, how do I get key's to
be passed instead of the values
during the selection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是应该回答您的问题的帖子的链接:多选列表框
Here's a link to a post which should answer your question:Multi Select Listbox