.NET Windows Forms自定义控件,如何创建快捷菜单
一些控件有一个有用的上下文菜单来访问一些常用的属性,例如标准 TextBox:
单击您得到的箭头:
如何使用自定义控件实现此目的? 谢谢。
Some controls have a useful context menu to access some often used properties, for example the standard TextBox:
Clicking the arrow you get:
How do I accomplish that with a custom control?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该创建自己的控件设计器,它可以为 VS 表单设计器提供动词作为自定义菜单项或 UI 增强功能。
请在此处查看完整文章:
Visual Studio 中的自定义设计时控制功能 .网络
you should create your own control designer which can provide verbs as custom menu items or UI enhancements to the VS form designer.
check here for the full article:
Custom Design-time Control Features in Visual Studio .NET