列表框从用户控件中选择了项目
我有一个填充有控件的列表框,该控件填充有文本框和组合框。当我编辑文本框并在组合中选择时,我需要选择底层列表项。似乎找不到解决方案。有人吗?
<ListBox.ItemTemplate>
<DataTemplate>
<Controls:ComponentEditItem Background="Transparent"/>
</DataTemplate>
</ListBox.ItemTemplate>
I have a listbox populate with controls , the control is populated with textboxes and comboboxes. I need to select the underlying listitem when i edit the textbox and select in the combos. Cant seem to find the solutio. Anyone?
<ListBox.ItemTemplate>
<DataTemplate>
<Controls:ComponentEditItem Background="Transparent"/>
</DataTemplate>
</ListBox.ItemTemplate>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加一个
EventTrigger
,当其中一个控件获得焦点时,它会选择底层的ListBoxItem
。像这样的东西:You can add an
EventTrigger
that selects underlyingListBoxItem
when one of its controls is focused. Something like this: