Is there any way to change TabList button's tooltip? Currently it shows “Open Files” tool tip over TabList button which doesn't help in my applicaion.
I didn’t find way to change it.
iamfish4,
Unfortunately the UltraTabControl does not expose a property to change the tooltip of the TabListButton. You can, however, use the resource customizer to change this string. The code in C# would look something like:
private void Form1_Load(object sender, EventArgs e) { Infragistics.Shared.ResourceCustomizer rc;
// Get the resource customizer object for the // 'Infragistics.Win' assembly to customize one // of its string resources. rc = Infragistics.Win.Resources.Customizer; rc.SetCustomizedString("TabManagerTabListButton", "My custom string");
}
Hope this helps,
~Kim~
Hi,
I am trying to use the ResourceCustomizer to change the tooltip of the Column Chooser button on the UltraGrid but it is not working. See code and screenshot below:
private void Form1_Load(object sender, EventArgs e) ResourceCustomizer rc;
rc = Infragistics.Win.
Resources.Customizer;
rc.SetCustomizedString(
"ColumnChooserButtonToolTip", "Test changing tooltip");
{
Thanks
Erwin
Erwin,
That is because you are getting the incorrect Customizer object- in order to customize WinGrid strings, you need to grab the customizer object from the UltraWinGrid namespace:
Infragistics.Shared.ResourceCustomizer rc = Infragistics.Win.UltraWinGrid.Resources.Customizer;
For more information, please see this article in our online documentation.