How to set font for TabbedMDIManager

Just a quick question. How do I set the text font for the tabs on TabbedMDIManager? I cannot find any properties I can use.
Thanks,
Frank

2 Replies

RC Rajesh C Syncfusion Team May 10, 2007 10:22 PM UTC

Hi Frank,

Thank you for using Syncfusion products.

You can set the text font for the tabs on TabbedMDIManager by using TabControl.Font property. You can handle TabControlAdded event. Please refer the following code snippets which illustrates the same:

[ C# ]
private void tabbedMDIManager_TabControlAdded(object sender, TabbedMDITabControlEventArgs args)
{
.
.
args.TabControl.Font = new Font("Times New Roman ", 20);
args.TabControl.ActiveTabFont = new Font("Times New Roman ", 20);
}

Please let me know if you have any other queries.

Regards,
Rajesh C


FS Feng Sha May 14, 2007 01:36 PM UTC

yes this works. thanks. frank

Loader.
Up arrow icon