set backcolor of ContextMenu

  • Thread starter Thread starter Steve Richter
  • Start date Start date
S

Steve Richter

I would like my popup ContextMenu to have a different backcolor than
the form. How is that done?

thanks,

-Steve
 
Steve said:
I would like my popup ContextMenu to have a different backcolor than
the form. How is that done?

thanks,

-Steve

Steve,

You can set it at design time by changing the BackColor property when
you have the control selected. You can also change it at runtime with
the following:

myContextMenuStrip.BackColor = Colors.Red;

You can also use SystemColors too.


Mark
 
Back
Top