MH Discord
MH Discord

Reputation: 53

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.

Upvotes: 0

Views: 619

Answers (1)

panoskarajohn
panoskarajohn

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

Related Questions