S Steve Richter Feb 26, 2007 #1 I would like my popup ContextMenu to have a different backcolor than the form. How is that done? thanks, -Steve
I would like my popup ContextMenu to have a different backcolor than the form. How is that done? thanks, -Steve
M Mark F. Feb 27, 2007 #2 Steve said: I would like my popup ContextMenu to have a different backcolor than the form. How is that done? thanks, -Steve Click to expand... 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
Steve said: I would like my popup ContextMenu to have a different backcolor than the form. How is that done? thanks, -Steve Click to expand... 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