Reputation: 3496
Good morning,
I am looking for a free implementation of the Windows Explorer menu bar introduced with the Aero theme back in Vista... I am talking about the bar which is just below the address bar when you open Explorer (and in case you don't have the old menu bar visible by default) that says, for instance, "Organize" or "Open Control Panel"... Is anyone aware of such a control for .NET?
Thank you very much.
Upvotes: 1
Views: 1648
Reputation: 17973
I'm not sure that you actually need a free control when you can get the original toolstrip control to mimic the appearance pretty close.
Here's how I did it:
private void toolStrip1_Paint(object sender, PaintEventArgs e) {
e.Graphics.FillRectangle(new SolidBrush(Color.FromArgb(227, 239, 240)), 0, 17, toolStrip1.Width, toolStrip1.Height);
}
So okay, the colors are wrong, but that's pretty close, wouldn't you agree?
Upvotes: 1