需要一个下拉命令列表框
在 WinForms 中,我必须快速设置一个包含一些文本和命令/按钮下拉列表的项目列表。这在 XAML 中很容易(我被宠坏了),但我不熟悉 Winforms。
std Winform 控件是否提供此功能? 有人可以建议第 3 方控件吗?
该图像显示悬停时显示的下拉菜单。
谢谢
In WinForms, I have to quickly set up a list of items that have some text and a dropdown of commands/buttons. This would be easy in XAML (I'm getting spoiled), but I'm not familiar with Winforms.
Do any of the std Winform controls provide this?
Can anyone suggest a 3rd party control??
The image shows a drop-down being shown when hovered.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来像普通的上下文菜单,因此您可以使用
ContextMenuStrip
组件。调用其Show()< 之一/code>
方法,当你想打开它时。
Looks like a normal context menu, so you can probably do this with the
ContextMenuStrip
component. Call one of itsShow()
methods when you want to open it.