Hi Daniel,
You could display the tabs associated with the TabbedMDIManager in any of the tabstyles, but I am afraid, presently it is not possible to display the tabs at the bottom like in Excel. You could display the tabs in OneNote style by handling the TabbedMDIManager''s TabControlAdded event as shown in code snippet below :
this.tabbedMdiManager.TabControlAdded += new TabbedMDITabControlEventHandler (TabControl_Added);
private void TabControl_Added (object sender, TabbedMDITabControlEventArgs arg)
{
arg.TabControl.TabStyle = typeof(OneNoteStyleRenderer);
}
Please refer to the
complete_sample attached here that illustrates this. Thanks for considering Syncfusion.
Regards,
Guru Patwal
Syncfusion, Inc.