I'm looking for a replacement to standard WinForms ToolStrip control, because this standard toolbar control looks outdated.
For example, DevExpress has a ribbon control, but that's not an exact equivalent.
I'm sure there must be many custom-written toolbars for WinForms, but having difficulties finding any. Although I can create my own control, it's not always the best solution.
The .Net
ToolStripcontrols can be custom rendered using a class that derives fromToolStripRenderer.This CodeProject article shows an example of this. A custom
ToolStripRendereris provided which renders theToolStripcontrols to look as though they are part of Office 2007. The source code is available.You can also use the old
MainMenu,ContextMenuandToolbarclasses instead of theToolstripcontrols. These controls are rendered in the current operating system style.NOTE: These are not direct replacements as they have different API's to the strip controls so if your application is already fairly far into development this won't be the easiest solution.