Mdi - UltraTabbedMdiManager.
The Windows .Net Framework MDI applications offer great functionality but look ugly,
boring and old. Creating a MDI application without third party controls will not
be visually appealing at all. Infragistics UltraTabbedMdiManager will give your
application a modern exciting new look and feel. The Control offers many preconfigured
style formats including, Office2007, Office2003 and Visual Studio. Of course you
have an array of appearance properties that will allow you to create just about
any look you want or need. Another great feature is the Tab groupings. You can create
vertical and horizontal tab groups at runtime allowing the end user complete flexibility
and freedom. The user can move the tab order as well as move the tabs between groups
of maximum productivity.
The control is loaded with events for total control interaction.

Namespace: Infragistics.Win.UltraWinTabbedMdi
Assembly: Infragistics.Win.UltraWinTabbedMdi.v6.3.dll
using IInfragistics.Win.UltraWinTabbedMdi;
Calling: Infragistics.Win.UltraWinTabbedMdi.UltraTabbedMdiManager
To add an UltraTabbedMdiManager to a form assign it a Style and assign the MdiParent
follow these steps.
Infragistics.Win.UltraWinTabbedMdi.UltraTabbedMdiManager uTab = new Infragistics.Win.UltraWinTabbedMdi.UltraTabbedMdiManager(this.components);
uTab.ViewStyle = Infragistics.Win.UltraWinTabbedMdi.ViewStyle.Office2007;
uTab.MdiParent = this;
To create a TabClosed event.
uTab.TabClosed += new Infragistics.Win.UltraWinTabbedMdi.MdiTabEventHandler(uTab_TabClosed);
To repond to the TabClosed event.
void uTab_TabClosed(object sender, Infragistics.Win.UltraWinTabbedMdi.MdiTabEventArgs
e) { MessageBox.Show("Tabbed Closed"); }
As with all Infraistics controls, the UltraTabbedMdiManager integrates with VisualStudio
and the VisualStudio ToolBox. You just need to drag and drop tools from the ToolBox
onto the Form.
|
|