JPopupMenu in Windows Forms

I'm new to .NET programming. I have experience in using JAVA Swing.

Is there any way I could create a popup pane with serveral widgets inside, e.g TreeView, Buttom

I used to use Swing's JPopupMenu to implement this. I could use JPopupMenu's default behaviour, like hide on MouseClickOutside. But it seems to me that Windows Forms's contextMenu is not capable to add anything but MenuItem. Is there any widgets i could use to make this task simpler 

Thanks

---
Alan 


Answer this question

JPopupMenu in Windows Forms

  • amcoop

    You could derive from the ContextMenue class and make your own, or on rightclick you could display a new form
  • JPopupMenu in Windows Forms