tags:

views:

313

answers:

1

How can I make the Tooltip in the following code display faster?

using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
using System.Windows.Media;

namespace TestHover29282
{
    public partial class Window1 : Window
    {
        public Window1()
        {
            InitializeComponent();

            TextBlock tb = new TextBlock();
            tb.Text = "Jim Smith";

            ToolTip tt = new ToolTip();
            tt.Content = "This is some info on the customer.";

            tb.ToolTip = tt;

            //ToolTipService tts = new ToolTipService();
            //tts.Duration = 0;
            //tb.ToolTipService = tts;

            MainStackPanel.Children.Add(tb); 
        }
    }
}
+5  A: 
ToolTipService.SetInitialShowDelay(tb, 10);

HTH,
Kent

Kent Boogaart
oops!! sorry, my fault, i didn't check that,
viky