从根容器获取 TreeViewItem 数据上下文
我有一个带有两个使用控件的窗口。一个封装了 TreeView 控件,另一个只是所选 TreeViewItems 详细信息的字符串表示形式。
TreeView 控件已经是自给自足的 - 它将用内容项填充自身。每个 TreeViewItem 都有一个数据上下文。
这是我需要发生的事情:
- 每当用户单击某个项目时,它都会生成一个 Selected 路由事件,该事件在我的窗口的根容器中被捕获。
- 我需要事件处理程序来处理 Selected 路由事件,以便能够从所选 TreeViewItem 的数据上下文中获取一些数据(属性值)。
- 根据该值,我的事件处理程序将创建一个DetailsView 控件并用数据填充它。
在处理选定事件方面,我的方法正确吗?如何从所选项目数据上下文中获取属性值?
谢谢。
I have a Window with two use controls. One encapsulates a TreeView control and another is marely a string representation of a selected TreeViewItems details.
TreeView controls is already self sufficient - it will populate itself with content items. Each TreeViewItem has a datacontext.
Here is what I need to happen:
- Whenever a user clicks an item, it generates a Selected routed event that is being caught at the root container of my window.
- I need the event handler, that handles Selected routed event to be able to get some data (a property value) from the selected TreeViewItem's data context.
- Based on this value, my event handler will create a DetailsView control and will populate it with data.
Is my approach correct, in respect to handling the Selected events? How can I get the property value from my selected items data context?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将属性绑定到 TreeView 的 SelectedItem 可以解决您的问题。下面的代码表达了我正在考虑的内容。对于您拥有的两个 UC,您可以公开 SelectedItem 的一个属性。
XAML:
的实体
项目绑定源
Binding a property to the SelectedItem of TreeView can fix your issue. The code below express what I'm considering. For the two UC you have, you can expose one property for the SelectedItem.
XAML:
Entity Of Item
Binding Source