How to apply Office2007 Silver, Blue, and Black themes to the TabbedMDIManager
3 Sep 20201 minute to read
You can apply Office2007ColorScheme when TabControl is added as follows.
private void tabbedMDIManager_TabControlAdded(object sender, TabbedMDITabControlEventArgs args)
{
args.TabControl.Office2007ColorScheme = Office2007Theme.Black;
}
Private Sub tabbedMDIManager_TabControlAdded(ByVal sender As Object, ByVal args As Syncfusion.Windows.Forms.Tools.TabbedMDITabControlEventArgs)
tabControl = args.TabControl
args.TabControl.Office2007ColorScheme = Office2007Theme.Black
End Sub