Menu Strip Control
When you create a menu strip control and select an option, the margin on the left side of the drop down is automatically the color blue. Is there anyway to change that color? I know you can change the color of the menu strip and the items in the menu, but how do you change the color of that left margin?
Kirtan PatelPosted Feb 8, 2010, 9:52 PM
that color of left margin is dependent on the Theme of your Operating System You can change this color by going to
Desktop > Right Click >> Properties >> Appearance >>Advance and Set Color there....it does not have seperate property in Visual Studio :)
hope it solves your doubt :)
paul danielPosted Feb 9, 2010, 1:11 AM
colors like this:
private void toolStripMenuItem_E
EventArgs e )
{
ToolStripMenuItem blah =
(ToolStripMenuItem)
blah.BackColor =
System.Drawing.Syst
blah.ForeColor =
System.Drawing.Syst
}
private void toolStripMenuItem_L
EventArgs e )
{
ToolStripMenuItem blah =
(ToolStripMenuItem)
blah.BackColor =
System.Drawing.Syst
blah.ForeColor =
System.Drawing.Syst
}