从“任务”中隐藏项目视觉工作室设计器中的弹出窗口
我有一个自定义 TreeView,我想从设计器任务弹出窗口中隐藏 ImageList 下拉列表。有没有(相对简单的)方法可以做到这一点?
I have a custom TreeView for which I'd like to hide the ImageList dropdown from the designer tasks popup. Is there any (relatively simple) way to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将恢复为默认的控制设计器动词列表,其中仅包含“停靠在父容器中”。
要添加“编辑节点...”,您需要创建自己的 ControlDesigner 派生类来添加它。最简单的可能是使用 Reflector 并复制 TreeViewDesigner 功能并删除 ImageList。
This will revert to the default Control Designer Verb list which only contains "Dock in Parent Container".
To add "Edit Nodes..." you'll need to look into creating your own ControlDesigner-derived class which adds it. Easiest might be using Reflector and copying the TreeViewDesigner functionalities and remove ImageList.