使用WPF显示层次结构数据
我有一个应用程序,需要根据数据选择(父子)显示分层数据。层次结构是:
公司>公司。工作部门>部门划分>部门主管>员工报告
根据设计,上述每一项均使用组合框表示。下面的每个级别都将根据上面的选择进行填充。例如,选择一家公司将加载该公司的所有工作部门。选择工作部门将加载所有部门等。
是否可以通过编写 XAML(使用 DataContext 或其他任何东西)来完成此任务?我真的不想为每个组合框编写 SelectionChanged 事件。
I have an application where I need to display hierarchical data based on data selection (parent-child). The hierarchy is:
Company > Work Sector > Sector Division > Division head > Employees Reporting
By design, each of the above items is represented using a combobox. Each level below will get populated based on the selection above. For example, selecting a company will load all the work sectors in the company. Selecting a work sector will load all the divisions and so on.
Is it possible to accomplish this by just writing XAML (using DataContext or anything else)? I really dont want to write the SelectionChanged event for each combobox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里的关键是主从绑定。
特别是如何:将主从模式与分层数据结合使用
The key here is Master-Detail Binding.
Especially How to: Use the Master-Detail Pattern with Hierarchical Data