c# - Aero-Style Windows Explorer Bar for .NET -
good morning,
i looking free implementation of windows explorer menu bar introduced aero theme in vista... talking bar below address bar when open explorer (and in case don't have old menu bar visible default) says, instance, "organize" or "open control panel"... aware of such control .net?
thank much.
i'm not sure need free control when can original toolstrip control mimic appearance pretty close.
here's how did it:
- drag toolstrip control form
- open properties , change
- gripstyle hidden,
- rendermode system,
- autosize false, and
- set size larger height, (34 pretty close 1 in explorer)
- add padding (i chose 5 on all)
- open items property , add dropdownbutton , select
- change displaystyle text
- change text "organize"
- change autosize false
- change height 28 or close
- click ok , go events toolstrip
- enter function name paint event (or double click) , enter code snippet below
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, colors wrong, that's pretty close, wouldn't agree?
Comments
Post a Comment