Need a listbox of drop-down commands
In WinForms, I开发者_StackOverflow中文版 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
Looks like a normal context menu, so you can probably do this with the ContextMenuStrip
component. Call one of its Show()
methods when you want to open it.
精彩评论