javascript menu sounds like a complex thing to add support for...
If I understand it correctly you need something like a dropdown menu on specific element...
I would do it using WinForms controls:
hope it help.
If I understand it correctly you need something like a dropdown menu on specific element...
I would do it using WinForms controls:
- add left mouse click handler on the panel/label.
- add id to the element you want the dropdown on
- on mouse click get the rectangle of the element by id and check if mouse was clicked in it
-
show the dropdown
hope it help.