How to Apply Office2007 Themes in TabbedMDI
18 Nov 20181 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