Reputation: 53
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
Upvotes: 0
Views: 619
Reputation: 1988
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?
Upvotes: 1