UltraToolbarsManager Control.
The Infragistics UltraToolbarsManager control offers all the features of the Windows
MenuStrip control but ith many more style and appearance options. You can quickly
build and configure Context Menus, menu Toolbars and items with the UltraToolbars
builder. All menu items can be Text, Image and Text or Image only items. Menu items
like Font List, Color Picker, ComboBoxes, ProgressBars, StateButtons allow the programmer
to create more powerful and richer applications.
Styles:
The UltraToolbars styles include, Office2000, Office2003, Office2007, XP and Visual
Studio.

Namespace: IInfragistics.Win.UltraWinToolbars.UltraToolbarsManager
Assembly: Infragistics2.Win.UltraWinToolbars..v6.3.dll
using IInfragistics.Win.UltraWinToolbars;
Calling: Infragistics.Win.UltraWinToolbars.UltraToolbarsManager
Events:
The UltraToolbar is loaded with events for complete event control. The Before and
After events allow for complete program control based off user input.
private void ultraToolbarsManager1_ToolClick(object sender, ToolClickEventArgs e)
{ switch (e.Tool.Key) { case "New": //Do Something break; case "Open": //Do Something
break; } }
|