Themes in Windows Forms ContextMenuStrip (ContextMenuStripEx)
10 Jun 20211 minute to read
Theming is the process of applying rich look and feel to visual elements of a control. The Style
property is used to set the visual style of ContextMenuStripEx control. This control provides the following theming options:
- Default
- Metro
- Office2016Colorful
- Office2016White
- Office2016DarkGray
- Office2016Black
The below code snippet will sets the visual style as “Office2016Black”.
this.contextMenuStripEx1.Style = Syncfusion.Windows.Forms.Tools.ContextMenuStripEx.ContextMenuStyle.Office2016Black;
Me.contextMenuStripEx1.Style = Syncfusion.Windows.Forms.Tools.ContextMenuStripEx.ContextMenuStyle.Office2016Black