Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
TabList button's tooltip
posted

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.

Parents
  • 5389
    Verified Answer
    posted

    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~

Reply Children