Component that will add a menu item

  • Thread starter Thread starter Leonardo D'Ippolito
  • Start date Start date
L

Leonardo D'Ippolito

Hi there,

I need to create a component (class library) that when added to a Win
App (main form) it will create a Menu / Menu Item with some options.

I know how to create a component, but this menu modification I don't
know how to do.

I appreciate any help!

[]'s

Leonardo
 
Override OnParentChanged() where you will create or attach your menu for the
parent, which is a form (unless it's null).
 
Back
Top