Search code examples
c#.netwinformsmenustrip

Change menu strip color .NET FRAMEWORK C#


I'm working with .NET FRAMEWORK 4.8 with C# WinForms, and I can't figure out how I could make a custom menu strip that appears on click, like the one below

this one.


Solution

  • To change the background color myMenuStrip.BackColor = Color.LightGreen;. To change the foreground color myMenuStrip.ForeColor = Color.White;

    Also you can move it inside your winforms -> Check this question -> Tool, menu strip - how do I change their locations in c# winforms?