添加\编辑\删除 WPF TreeView 代码背后的右键单击上下文菜单
我想在我的 C# 代码中添加或更改 wpf 树视图的上下文菜单。我该怎么做呢???
I Want to Add or Change the context menu of treeview of wpf in my C# code.how can I do it???
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么你需要那个?也许用其他方式来做而不影响后面的代码会更好?我更喜欢视图和逻辑解耦,基本上这是我建议遵循的 MVVM 方法。
无论如何,您可以通过添加 Initialized 事件来完成此操作处理程序,而不是在代码隐藏中传递它:
XAML:
代码隐藏:
Why you need that? Perhaps it would be better to do it in an other way without affecting a code behind? I preffer when View and logic is decoupled, basically this is MVVM approach I would suggest to follow.
Anyway you can do it by adding Initialized event handler and than handing it in code behind:
XAML:
Code behind: