Hi,
I have a few problems with the UltraExplorerBar, that I would like solutions for:
1. I am unable to handle the behavior of the Tab button. When I click the Tab on the keyboard, the focus moves to the next item/group. I want the focus to move to the next control. In the UltraGrid, there is a property called TabNavigation, where I can define this, but I cannot find that property or any alike for this control. How do I achieve the desired behaviour?
2. When the control is set to OutlookNavigationPan, a NavigationOverflowButtonArea appear. I am able to translate the texts shown when clicking the button in this area ("Show Fewer Button", "Show More Buttons", etc.). However, the I cannot figure out how to translate the tooltip appears when hoover the button ("Configure Buttons"). How do I change this tooltip? Thanks in advance,Thomas
1. Remove the key mappings for the Tab key, like so:
for ( int i = this.ultraExplorerBar1.KeyActionMappings.Count - 1; i >= 0; i -- ){ UltraExplorerBarKeyActionMapping keyMapping = this.ultraExplorerBar1.KeyActionMappings[i]; if ( (keyMapping.KeyCode & Keys.Tab) == Keys.Tab ) this.ultraExplorerBar1.KeyActionMappings.Remove( keyMapping );}
2. Infragistics.Win.UltraWinExplorerBar.Resources.Customizer.SetCustomizedString("NavigationQuickCustomizeButton_Tooltip", "Changed");