<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>tooltipservice Issue Tracker Rss Feed</title><link>http://tooltipservice.codeplex.com/WorkItem/List.aspx</link><description>tooltipservice Issue Tracker Rss Description</description><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>&amp;#60;p&amp;#62;Hi,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;how to solve this problem,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Thanks  &amp;#38;amp&amp;#59; Regards&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Sudhir&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: gopalakrishnach ** &lt;p&gt;I solved the problem of multiple tooltips in following way.&lt;/p&gt;&lt;p&gt;I added below method in ToolTipService.cs&lt;/p&gt;&lt;p&gt;__private static void CloseAllToolTips()&lt;br&gt;    {&lt;br&gt;      var toolTip = GetToolTip(RootVisual);&lt;br&gt;      foreach (var kvp in elementsAndToolTips)&lt;br&gt;      {&lt;br&gt;        //if (!(ReferenceEquals(kvp.Value, toolTip)))&lt;br&gt;        kvp.Value.Visibility=Visibility.Collapsed;&lt;br&gt;          kvp.Value.IsOpen = false;&lt;br&gt;      }&lt;br&gt;    }__&lt;/p&gt;&lt;p&gt;I called this method in TooltipService.cs where ever I want like OnElementMouseLeave and OnElementMouseEnter and so on. This certainly solved my problem.&lt;/p&gt;</description><author>gopalakrishnach</author><pubDate>Fri, 01 Feb 2013 20:01:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20130201080109P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>&amp;#60;p&amp;#62;Hi,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;how to solve this problem,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Thanks  &amp;#38;amp&amp;#59; Regards&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Sudhir&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: gopalakrishnach ** &lt;p&gt;I solved the problem of  seeing a tooltip on my UI even though I move out of RadGridView.&lt;/p&gt;&lt;p&gt;__I gave my placement target as bottom__ and in ToolTipService.cs in PerformPlacement method, I gave following to display my tooltip/open popup only if the popup comes in valid position else do nothing.&lt;/p&gt;&lt;p&gt; case PlacementMode.Bottom:&lt;br&gt;        case PlacementMode.Right:&lt;br&gt;        case PlacementMode.Left:&lt;br&gt;        case PlacementMode.Top:&lt;br&gt;          var plugin = new Rect(0.0, 0.0, Application.Current.Host.Content.ActualWidth, Application.Current.Host.Content.ActualHeight);&lt;br&gt;          var translatedPoints = GetTranslatedPoints((FrameworkElement)placementTarget);&lt;br&gt;          var toolTip = GetTranslatedPoints((FrameworkElement)parentPopup.Child);&lt;br&gt;          Point popupLocation = PlacePopup(plugin, translatedPoints, toolTip, placementMode);&lt;br&gt;          parentPopup.VerticalOffset = popupLocation.Y + verticalOffset;&lt;br&gt;          parentPopup.HorizontalOffset = popupLocation.X + horizontalOffset;&lt;br&gt;         __var elements = VisualTreeHelper.FindElementsInHostCoordinates(new Point(MousePosition.X, MousePosition.Y), null) as List&amp;lt;UIElement&amp;gt;;&lt;br&gt;          if (elements != null)&lt;br&gt;          {&lt;br&gt;            if (elements.Contains(CurrentToolTip.PlacementTarget))&lt;br&gt;            {&lt;br&gt;              parentPopup.IsOpen = true;&lt;br&gt;            }&lt;br&gt;            else&lt;br&gt;            {&lt;br&gt;              string s = &amp;quot;here&amp;quot;;&lt;br&gt;            }&lt;br&gt;          }__&lt;br&gt;          break;&lt;/p&gt;&lt;p&gt;When I move from one tab to another, the code was throwing exception, in order to solve this I gave the following if condition in GetTranslatedPoints method in ToolTipService.cs&lt;br&gt;__if (frameworkElement != null &amp;amp;&amp;amp; frameworkElement.ActualHeight &amp;gt; 0 &amp;amp;&amp;amp; frameworkElement.ActualWidth &amp;gt; 0)__&lt;/p&gt;&lt;p&gt;previously if was just   __if (frameworkElement != null)__&lt;br&gt;&lt;/p&gt;</description><author>gopalakrishnach</author><pubDate>Fri, 01 Feb 2013 19:55:09 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20130201075509P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>&amp;#60;p&amp;#62;Hi,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;how to solve this problem,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;&amp;#35;160&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Thanks  &amp;#38;amp&amp;#59; Regards&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Sudhir&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;Comments: ** Comment from web user: gopalakrishnach ** &lt;p&gt;I was able to solve multiple tooltips problems. Now, I always see ONLY one tooltip. &lt;/p&gt;&lt;p&gt;But I have one more problem. After sometime, I see a tooltip on my UI even though I move out of RadGridView. I tried many ways but could not solve it. Any help is highly appreciated. It's kind of urgent. &lt;/p&gt;</description><author>gopalakrishnach</author><pubDate>Wed, 30 Jan 2013 19:06:49 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20130130070649P</guid></item><item><title>Created Issue: Tooltips not displaying properly with tabs [7212]</title><link>http://tooltipservice.codeplex.com/workitem/7212</link><description>When using the advacned tootip on a tabed interface, tooltips on the first table will not display after tabbing to to the second tab and then tabbing back.  Attached is a small silverlight project that demonstrates this behavior.&lt;br /&gt;&lt;br /&gt;Run the app, hover over the image on the first tab to see a tooltip.  Select the second tab, hover on the image to see its tooltip.  Select the first tab again and no tooltip displays.  Switch back to the second tab and the tooltip there still works, but the first one will not work again until you refresh the page.&lt;br /&gt;</description><author>djcohen66</author><pubDate>Wed, 28 Nov 2012 19:46:40 GMT</pubDate><guid isPermaLink="false">Created Issue: Tooltips not displaying properly with tabs [7212] 20121128074640P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>&amp;#60;p&amp;#62;Hi,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;how to solve this problem,&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Thanks  &amp;#38;amp&amp;#59; Regards&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Sudhir&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: ** Comment from web user: gopalakrishnach ** &lt;p&gt;I also have same issue with RadGridView. I see many tooltips on my radgridview. &lt;/p&gt;</description><author>gopalakrishnach</author><pubDate>Tue, 09 Oct 2012 15:23:56 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20121009032356P</guid></item><item><title>Commented Issue: TabControl Issue [6556]</title><link>http://tooltipservice.codeplex.com/workitem/6556</link><description>&amp;#60;p&amp;#62;Hello, first of all, awesome product.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I have a tabbed application. The problem is that tabs will unload children from the visual tree, and thus the tooltip will be unregistered. when the tab is reactivated, the tooltip must once again be registered, which is not done in tooltipservice. Heres a short fully working example to demonstrate the problem with tabs.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;1&amp;#41; Create a new Silverlight 4 project. Add references to System.Windows.Controls &amp;#38;amp&amp;#59; Silverlight.Controls.Tooltips.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;Paste this in your MainPage.xaml&amp;#58;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;lt&amp;#59;UserControl x&amp;#58;Class&amp;#61;&amp;#38;quot&amp;#59;Repoduce_Bug_D_02315.MainPage&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#61;&amp;#38;quot&amp;#59;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#58;x&amp;#61;&amp;#38;quot&amp;#59;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#58;d&amp;#61;&amp;#38;quot&amp;#59;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#58;mc&amp;#61;&amp;#38;quot&amp;#59;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#58;Controls&amp;#61;&amp;#38;quot&amp;#59;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    xmlns&amp;#58;CustomToolTips&amp;#61;&amp;#38;quot&amp;#59;clr-namespace&amp;#58;Silverlight.Controls.ToolTips&amp;#59;assembly&amp;#61;Silverlight.Controls.ToolTips&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    mc&amp;#58;Ignorable&amp;#61;&amp;#38;quot&amp;#59;d&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    d&amp;#58;DesignHeight&amp;#61;&amp;#38;quot&amp;#59;300&amp;#38;quot&amp;#59; d&amp;#58;DesignWidth&amp;#61;&amp;#38;quot&amp;#59;400&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    &amp;#38;lt&amp;#59;Grid x&amp;#58;Name&amp;#61;&amp;#38;quot&amp;#59;LayoutRoot&amp;#38;quot&amp;#59; Background&amp;#61;&amp;#38;quot&amp;#59;White&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;      &amp;#38;lt&amp;#59;Controls&amp;#58;TabControl&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;        &amp;#38;lt&amp;#59;Controls&amp;#58;TabItem Header&amp;#61;&amp;#38;quot&amp;#59;Tab1&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;          &amp;#38;lt&amp;#59;TextBlock Text&amp;#61;&amp;#38;quot&amp;#59;My textblock which has a tooltip&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;            &amp;#38;lt&amp;#59;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;              &amp;#38;lt&amp;#59;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#38;quot&amp;#59;Forever&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                                      InitialDelay&amp;#61;&amp;#38;quot&amp;#59;00&amp;#58;00&amp;#58;00&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                &amp;#38;lt&amp;#59;TextBlock Text&amp;#61;&amp;#38;quot&amp;#59;My ToolTip contents&amp;#38;quot&amp;#59;&amp;#47;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;              &amp;#38;lt&amp;#59;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;            &amp;#38;lt&amp;#59;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;          &amp;#38;lt&amp;#59;&amp;#47;TextBlock&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;        &amp;#38;lt&amp;#59;&amp;#47;Controls&amp;#58;TabItem&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;        &amp;#38;lt&amp;#59;Controls&amp;#58;TabItem Header&amp;#61;&amp;#38;quot&amp;#59;Tab2&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;          &amp;#38;lt&amp;#59;TextBlock Text&amp;#61;&amp;#38;quot&amp;#59;My textblock in tab 2 which also has a tooltip&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;            &amp;#38;lt&amp;#59;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;              &amp;#38;lt&amp;#59;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#38;quot&amp;#59;Forever&amp;#38;quot&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                                      InitialDelay&amp;#61;&amp;#38;quot&amp;#59;00&amp;#58;00&amp;#58;00&amp;#38;quot&amp;#59;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;                &amp;#38;lt&amp;#59;TextBlock Text&amp;#61;&amp;#38;quot&amp;#59;My ToolTip contents in tab 2&amp;#38;quot&amp;#59;&amp;#47;&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;              &amp;#38;lt&amp;#59;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;            &amp;#38;lt&amp;#59;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;          &amp;#38;lt&amp;#59;&amp;#47;TextBlock&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;        &amp;#38;lt&amp;#59;&amp;#47;Controls&amp;#58;TabItem&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;      &amp;#38;lt&amp;#59;&amp;#47;Controls&amp;#58;TabControl&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;    &amp;#38;lt&amp;#59;&amp;#47;Grid&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;lt&amp;#59;&amp;#47;UserControl&amp;#38;gt&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;How to reproduce&amp;#58; hold the mouse over the first text that appears. Works as expected. Change to tab2. hold the mouse over the text that appears. Works as expected. Change back to tab1. Now, the tooltip doesnt show up anymore. Change to tab2 and same thing here - the tooltip doesnt show up. The tooltip will not come back until the control is reinstanciated.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;&amp;#38;nbsp&amp;#59;&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&amp;#60;p&amp;#62;I posted a fix for this in patches.&amp;#60;&amp;#47;p&amp;#62;&lt;br /&gt;&lt;br /&gt;Comments: ** Comment from web user: gopalakrishnach ** &lt;p&gt;I had the same issue and I fixed using below code int ToolTipService.cs&lt;/p&gt;&lt;p&gt;private static void FrameworkElementReloaded(object sender, RoutedEventArgs e)&lt;br&gt;       {&lt;br&gt;         var owner = sender as FrameworkElement;&lt;br&gt;         if (owner == null)&lt;br&gt;         {&lt;br&gt;           throw new ArgumentException(&amp;quot;Expected a FrameworkElement&amp;quot;, &amp;quot;sender&amp;quot;);&lt;br&gt;         }&lt;br&gt;         // Remove the loaded event, this may be fired again when virtualizing etc&lt;br&gt;         owner.Loaded -= FrameworkElementReloaded;&lt;br&gt;         // re-register tooltip&lt;br&gt;         RegisterToolTip(owner, owner.GetValue(ToolTipObjectProperty));&lt;br&gt;       }&lt;/p&gt;&lt;p&gt;&lt;br&gt;private static void UnregisterToolTip(UIElement owner)&lt;br&gt;        {&lt;br&gt;            if (owner.GetValue(ToolTipObjectProperty) == null)&lt;br&gt;            {&lt;br&gt;                return;&lt;br&gt;            }&lt;/p&gt;&lt;p&gt;            var frameworkElement = owner as FrameworkElement;&lt;br&gt;             //if (owner is FrameworkElement)&lt;br&gt;              if (frameworkElement != null)&lt;br&gt;               {&lt;br&gt;                //((FrameworkElement)owner).Unloaded -= FrameworkElementUnloaded;&lt;br&gt;                 frameworkElement.Unloaded -= FrameworkElementUnloaded;&lt;br&gt;                frameworkElement.Loaded += FrameworkElementReloaded;&lt;br&gt;                }&lt;br&gt;            owner.MouseEnter -= OnElementMouseEnter;&lt;br&gt;            owner.MouseLeave -= OnElementMouseLeave;&lt;/p&gt;&lt;p&gt;            var toolTip = (ToolTip)owner.GetValue(ToolTipObjectProperty);&lt;br&gt;            if (toolTip.IsOpen)&lt;br&gt;            {&lt;br&gt;                toolTip.IsOpen = false;&lt;br&gt;            }&lt;br&gt;            toolTip.SetOwner(null);&lt;br&gt;           // owner.ClearValue(ToolTipObjectProperty);&lt;/p&gt;&lt;p&gt;            if (elementsAndToolTips.ContainsKey(owner))&lt;br&gt;            {&lt;br&gt;                elementsAndToolTips.Remove(owner);&lt;br&gt;            }&lt;br&gt;        }&lt;br&gt;&lt;/p&gt;</description><author>gopalakrishnach</author><pubDate>Thu, 04 Oct 2012 22:19:25 GMT</pubDate><guid isPermaLink="false">Commented Issue: TabControl Issue [6556] 20121004101925P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &lt;br /&gt;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&lt;br /&gt;&lt;br /&gt;how to solve this problem,&lt;br /&gt;&lt;br /&gt;Thanks  &amp;#38; Regards&lt;br /&gt;Sudhir&lt;br /&gt;Comments: ** Comment from web user: nico008 ** &lt;p&gt;I have exactly same problem with DataGrid control.&lt;br /&gt;Any fix is welcome.&lt;/p&gt;</description><author>nico008</author><pubDate>Thu, 13 Sep 2012 11:25:02 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20120913112502A</guid></item><item><title>Commented Issue: TabControl Issue [6556]</title><link>http://tooltipservice.codeplex.com/workitem/6556</link><description>Hello, first of all, awesome product.&lt;br /&gt;&lt;br /&gt;I have a tabbed application. The problem is that tabs will unload children from the visual tree, and thus the tooltip will be unregistered. when the tab is reactivated, the tooltip must once again be registered, which is not done in tooltipservice. Heres a short fully working example to demonstrate the problem with tabs.&lt;br /&gt;&lt;br /&gt;1&amp;#41; Create a new Silverlight 4 project. Add references to System.Windows.Controls &amp;#38; Silverlight.Controls.Tooltips.&lt;br /&gt;&lt;br /&gt;Paste this in your MainPage.xaml&amp;#58;&lt;br /&gt;&amp;#60;UserControl x&amp;#58;Class&amp;#61;&amp;#34;Repoduce_Bug_D_02315.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34;&lt;br /&gt;    xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34;&lt;br /&gt;    xmlns&amp;#58;Controls&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls&amp;#34;&lt;br /&gt;    xmlns&amp;#58;CustomToolTips&amp;#61;&amp;#34;clr-namespace&amp;#58;Silverlight.Controls.ToolTips&amp;#59;assembly&amp;#61;Silverlight.Controls.ToolTips&amp;#34;&lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&lt;br /&gt;    d&amp;#58;DesignHeight&amp;#61;&amp;#34;300&amp;#34; d&amp;#58;DesignWidth&amp;#61;&amp;#34;400&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34;&amp;#62;&lt;br /&gt;      &amp;#60;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab1&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock which has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab2&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock in tab 2 which also has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents in tab 2&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;      &amp;#60;&amp;#47;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to reproduce&amp;#58; hold the mouse over the first text that appears. Works as expected. Change to tab2. hold the mouse over the text that appears. Works as expected. Change back to tab1. Now, the tooltip doesnt show up anymore. Change to tab2 and same thing here - the tooltip doesnt show up. The tooltip will not come back until the control is reinstanciated.&lt;br /&gt;&lt;br /&gt;I posted a fix for this in patches.&lt;br /&gt;Comments: ** Comment from web user: Tewr ** &lt;p&gt;Well this is kind of late and I&amp;#39;m sure you found it by now if you were desperete enough. Patches are on Sourcecode&amp;#47;patches&amp;#58; http&amp;#58;&amp;#47;&amp;#47;tooltipservice.codeplex.com&amp;#47;SourceControl&amp;#47;list&amp;#47;patches&lt;/p&gt;</description><author>Tewr</author><pubDate>Thu, 16 Aug 2012 12:01:53 GMT</pubDate><guid isPermaLink="false">Commented Issue: TabControl Issue [6556] 20120816120153P</guid></item><item><title>Commented Issue: Tooltip does not work after closing childwindows [6981]</title><link>http://tooltipservice.codeplex.com/workitem/6981</link><description>Hi, I put the tooltip inside a child window for an info image. It works fine the first time i open the child window, but when i close the child window and click on the link in the parent window to open the child window again, and hover over the image, nothing happens, and the break point does not get hit. Does it unregister itself somehow&amp;#63;&lt;br /&gt;Comments: ** Comment from web user: ethan2012 ** &lt;p&gt;To fix this I added a Loaded event on the Owner. So, when we first register the tooltip, we should subscribe to both the Loaded and UnLoaded events of thge owner. And then in the Loaded event we need to register the tooltip again.&lt;/p&gt;</description><author>ethan2012</author><pubDate>Tue, 05 Jun 2012 17:44:47 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip does not work after closing childwindows [6981] 20120605054447P</guid></item><item><title>Created Issue: Tooltip does not work after closing childwindows [6981]</title><link>http://tooltipservice.codeplex.com/workitem/6981</link><description>Hi, I put the tooltip inside a child window for an info image. It works fine the first time i open the child window, but when i close the child window and click on the link in the parent window to open the child window again, and hover over the image, nothing happens, and the break point does not get hit. Does it unregister itself somehow&amp;#63;&lt;br /&gt;</description><author>ethan2012</author><pubDate>Mon, 04 Jun 2012 17:19:32 GMT</pubDate><guid isPermaLink="false">Created Issue: Tooltip does not work after closing childwindows [6981] 20120604051932P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &lt;br /&gt;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&lt;br /&gt;&lt;br /&gt;how to solve this problem,&lt;br /&gt;&lt;br /&gt;Thanks  &amp;#38; Regards&lt;br /&gt;Sudhir&lt;br /&gt;Comments: ** Comment from web user: jtcooke ** &lt;p&gt;Same problem here.  Using a tree control where the data gets re-populated every 10 seconds.  My tooltip style has &amp;#60;Setter Property&amp;#61;&amp;#34;DisplayTime&amp;#34; Value&amp;#61;&amp;#34;Forever&amp;#34; &amp;#47;&amp;#62; because I don&amp;#39;t want the tooltips to close until the user mouses out.  The problem is if the tree data is reloaded, the tooltips get confused.  They don&amp;#39;t close and then there are multiple instances of the tooltip on the screen.&lt;/p&gt;</description><author>jtcooke</author><pubDate>Wed, 28 Mar 2012 14:42:39 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20120328024239P</guid></item><item><title>Commented Issue: TabControl Issue [6556]</title><link>http://tooltipservice.codeplex.com/workitem/6556</link><description>Hello, first of all, awesome product.&lt;br /&gt;&lt;br /&gt;I have a tabbed application. The problem is that tabs will unload children from the visual tree, and thus the tooltip will be unregistered. when the tab is reactivated, the tooltip must once again be registered, which is not done in tooltipservice. Heres a short fully working example to demonstrate the problem with tabs.&lt;br /&gt;&lt;br /&gt;1&amp;#41; Create a new Silverlight 4 project. Add references to System.Windows.Controls &amp;#38; Silverlight.Controls.Tooltips.&lt;br /&gt;&lt;br /&gt;Paste this in your MainPage.xaml&amp;#58;&lt;br /&gt;&amp;#60;UserControl x&amp;#58;Class&amp;#61;&amp;#34;Repoduce_Bug_D_02315.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34;&lt;br /&gt;    xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34;&lt;br /&gt;    xmlns&amp;#58;Controls&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls&amp;#34;&lt;br /&gt;    xmlns&amp;#58;CustomToolTips&amp;#61;&amp;#34;clr-namespace&amp;#58;Silverlight.Controls.ToolTips&amp;#59;assembly&amp;#61;Silverlight.Controls.ToolTips&amp;#34;&lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&lt;br /&gt;    d&amp;#58;DesignHeight&amp;#61;&amp;#34;300&amp;#34; d&amp;#58;DesignWidth&amp;#61;&amp;#34;400&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34;&amp;#62;&lt;br /&gt;      &amp;#60;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab1&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock which has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab2&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock in tab 2 which also has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents in tab 2&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;      &amp;#60;&amp;#47;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to reproduce&amp;#58; hold the mouse over the first text that appears. Works as expected. Change to tab2. hold the mouse over the text that appears. Works as expected. Change back to tab1. Now, the tooltip doesnt show up anymore. Change to tab2 and same thing here - the tooltip doesnt show up. The tooltip will not come back until the control is reinstanciated.&lt;br /&gt;&lt;br /&gt;I posted a fix for this in patches.&lt;br /&gt;Comments: ** Comment from web user: AngryPixel ** &lt;p&gt;I have the same issue, when will the fix for this be available&amp;#63;&lt;/p&gt;</description><author>AngryPixel</author><pubDate>Thu, 01 Mar 2012 18:43:43 GMT</pubDate><guid isPermaLink="false">Commented Issue: TabControl Issue [6556] 20120301064343P</guid></item><item><title>Commented Issue: Tool tip visible when parent containter is collapsed [6174]</title><link>http://tooltipservice.codeplex.com/workitem/6174</link><description>If you add a tool tip on a button that on click will be collapsed, the tool tip will remain visible causing the next tool tips on other controls to remain visible even if the mouse pointer is not over the control that contains the tool tip.&lt;br /&gt;&lt;br /&gt;This is happening only when use the tool tip on a control that can be hidden while tool tip is visible.&lt;br /&gt;Comments: ** Comment from web user: anilchinnu21 ** &lt;p&gt;Any fix&amp;#47;workaround available for this issue&amp;#63;&lt;/p&gt;</description><author>anilchinnu21</author><pubDate>Thu, 09 Feb 2012 13:54:41 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tool tip visible when parent containter is collapsed [6174] 20120209015441P</guid></item><item><title>Commented Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &lt;br /&gt;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&lt;br /&gt;&lt;br /&gt;how to solve this problem,&lt;br /&gt;&lt;br /&gt;Thanks  &amp;#38; Regards&lt;br /&gt;Sudhir&lt;br /&gt;Comments: ** Comment from web user: qi_george ** &lt;p&gt;I have same problem when use it inside DataGrid control, many of the same tooltips can be created and I am not able to close it.&lt;/p&gt;</description><author>qi_george</author><pubDate>Wed, 25 Jan 2012 14:25:14 GMT</pubDate><guid isPermaLink="false">Commented Issue: Tooltip Problem [6701] 20120125022514P</guid></item><item><title>Created Issue: Tooltip Problem [6701]</title><link>http://tooltipservice.codeplex.com/workitem/6701</link><description>Hi,&lt;br /&gt;&lt;br /&gt;I am using adavnced tooltip in silverlight4, I am creating the treemap , when i hover the mouse in &lt;br /&gt;each block of treemap,Tooltip of previous block is remain visible, sometimes multiple tooltip showes in treemap,&lt;br /&gt;&lt;br /&gt;how to solve this problem,&lt;br /&gt;&lt;br /&gt;Thanks  &amp;#38; Regards&lt;br /&gt;Sudhir&lt;br /&gt;</description><author>arunsrivastava</author><pubDate>Tue, 03 Jan 2012 06:12:38 GMT</pubDate><guid isPermaLink="false">Created Issue: Tooltip Problem [6701] 20120103061238A</guid></item><item><title>Created Issue: Bug: Placement is wrong when PlacementTarget is not specified [6649]</title><link>http://tooltipservice.codeplex.com/workitem/6649</link><description>Nice library&amp;#33;  One slight issue though&amp;#58; if you set the Placement property, but don&amp;#39;t set the PlacementTarget, the tooltip appears in the upper left corner.  This differs from how the built-in ToolTip works.  Changing the following line in ToolTipService.PerformPlacement from&lt;br /&gt;&lt;br /&gt;UIElement placementTarget &amp;#61; CurrentToolTip.PlacementTarget&amp;#59;&lt;br /&gt;&lt;br /&gt;to&lt;br /&gt;&lt;br /&gt;UIElement placementTarget &amp;#61; CurrentToolTip.PlacementTarget &amp;#63;&amp;#63; CurrentToolTip.Owner&amp;#59;&lt;br /&gt;&lt;br /&gt;resolves this issue.&lt;br /&gt;</description><author>RabidCow</author><pubDate>Sun, 04 Dec 2011 03:24:48 GMT</pubDate><guid isPermaLink="false">Created Issue: Bug: Placement is wrong when PlacementTarget is not specified [6649] 20111204032448A</guid></item><item><title>Created Issue: Bug: Placement is wrong when PlacementTarget is not specified [6649]</title><link>http://tooltipservice.codeplex.com/workitem/6649</link><description>Nice library&amp;#33;  One slight issue though&amp;#58; if you set the Placement property, but don&amp;#39;t set the PlacementTarget, the tooltip appears in the upper left corner.  This differs from how the built-in ToolTip works.  Changing the following line in ToolTipService.PerformPlacement from&lt;br /&gt;&lt;br /&gt;UIElement placementTarget &amp;#61; CurrentToolTip.PlacementTarget&amp;#59;&lt;br /&gt;&lt;br /&gt;to&lt;br /&gt;&lt;br /&gt;UIElement placementTarget &amp;#61; CurrentToolTip.PlacementTarget &amp;#63;&amp;#63; CurrentToolTip.Owner&amp;#59;&lt;br /&gt;&lt;br /&gt;resolves this issue.&lt;br /&gt;</description><author>RabidCow</author><pubDate>Sun, 04 Dec 2011 03:24:48 GMT</pubDate><guid isPermaLink="false">Created Issue: Bug: Placement is wrong when PlacementTarget is not specified [6649] 20111204032448A</guid></item><item><title>Commented Issue: TabControl Issue [6556]</title><link>http://tooltipservice.codeplex.com/workitem/6556</link><description>Hello, first of all, awesome product.&lt;br /&gt;&lt;br /&gt;I have a tabbed application. The problem is that tabs will unload children from the visual tree, and thus the tooltip will be unregistered. when the tab is reactivated, the tooltip must once again be registered, which is not done in tooltipservice. Heres a short fully working example to demonstrate the problem with tabs.&lt;br /&gt;&lt;br /&gt;1&amp;#41; Create a new Silverlight 4 project. Add references to System.Windows.Controls &amp;#38; Silverlight.Controls.Tooltips.&lt;br /&gt;&lt;br /&gt;Paste this in your MainPage.xaml&amp;#58;&lt;br /&gt;&amp;#60;UserControl x&amp;#58;Class&amp;#61;&amp;#34;Repoduce_Bug_D_02315.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34;&lt;br /&gt;    xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34;&lt;br /&gt;    xmlns&amp;#58;Controls&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls&amp;#34;&lt;br /&gt;    xmlns&amp;#58;CustomToolTips&amp;#61;&amp;#34;clr-namespace&amp;#58;Silverlight.Controls.ToolTips&amp;#59;assembly&amp;#61;Silverlight.Controls.ToolTips&amp;#34;&lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&lt;br /&gt;    d&amp;#58;DesignHeight&amp;#61;&amp;#34;300&amp;#34; d&amp;#58;DesignWidth&amp;#61;&amp;#34;400&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34;&amp;#62;&lt;br /&gt;      &amp;#60;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab1&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock which has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab2&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock in tab 2 which also has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents in tab 2&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;      &amp;#60;&amp;#47;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to reproduce&amp;#58; hold the mouse over the first text that appears. Works as expected. Change to tab2. hold the mouse over the text that appears. Works as expected. Change back to tab1. Now, the tooltip doesnt show up anymore. Change to tab2 and same thing here - the tooltip doesnt show up. The tooltip will not come back until the control is reinstanciated.&lt;br /&gt;&lt;br /&gt;I posted a fix for this in patches.&lt;br /&gt;Comments: ** Comment from web user: sbryfcz ** &lt;p&gt;I love the possibilities with this but I also have a tabbed application and I have the same issue.&lt;/p&gt;&lt;p&gt;Where do I go for patches&amp;#63; Sorry, i&amp;#39;m new to this and can&amp;#39;t find it anywhere.  Please help&amp;#33; This is a great product but I HAVE to have this fixed and I&amp;#39;d rather not repeat work if its already done.  Thanks,&lt;/p&gt;</description><author>sbryfcz</author><pubDate>Tue, 15 Nov 2011 18:06:15 GMT</pubDate><guid isPermaLink="false">Commented Issue: TabControl Issue [6556] 20111115060615P</guid></item><item><title>Created Issue: TabControl Issue [6556]</title><link>http://tooltipservice.codeplex.com/workitem/6556</link><description>Hello, first of all, awesome product.&lt;br /&gt;&lt;br /&gt;I have a tabbed application. Heres a short fully working example to demonstrate the problem with tabs &amp;#40;might just be a general problem with visibility&amp;#61;IsHidden on elements, but tabs demonstrate it in a simple way&amp;#41;.&lt;br /&gt;1&amp;#41; Create a new Silverlight 4 project. Add references to System.Windows.Controls &amp;#38; Silverlight.Controls.Tooltips.&lt;br /&gt;&lt;br /&gt;Paste this in your MainPage.xaml&amp;#58;&lt;br /&gt;&amp;#60;UserControl x&amp;#58;Class&amp;#61;&amp;#34;Repoduce_Bug_D_02315.MainPage&amp;#34;&lt;br /&gt;    xmlns&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#47;presentation&amp;#34;&lt;br /&gt;    xmlns&amp;#58;x&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;winfx&amp;#47;2006&amp;#47;xaml&amp;#34;&lt;br /&gt;    xmlns&amp;#58;d&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.microsoft.com&amp;#47;expression&amp;#47;blend&amp;#47;2008&amp;#34;&lt;br /&gt;    xmlns&amp;#58;mc&amp;#61;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;schemas.openxmlformats.org&amp;#47;markup-compatibility&amp;#47;2006&amp;#34;&lt;br /&gt;    xmlns&amp;#58;Controls&amp;#61;&amp;#34;clr-namespace&amp;#58;System.Windows.Controls&amp;#59;assembly&amp;#61;System.Windows.Controls&amp;#34;&lt;br /&gt;    xmlns&amp;#58;CustomToolTips&amp;#61;&amp;#34;clr-namespace&amp;#58;Silverlight.Controls.ToolTips&amp;#59;assembly&amp;#61;Silverlight.Controls.ToolTips&amp;#34;&lt;br /&gt;    mc&amp;#58;Ignorable&amp;#61;&amp;#34;d&amp;#34;&lt;br /&gt;    d&amp;#58;DesignHeight&amp;#61;&amp;#34;300&amp;#34; d&amp;#58;DesignWidth&amp;#61;&amp;#34;400&amp;#34;&amp;#62;&lt;br /&gt;&lt;br /&gt;    &amp;#60;Grid x&amp;#58;Name&amp;#61;&amp;#34;LayoutRoot&amp;#34; Background&amp;#61;&amp;#34;White&amp;#34;&amp;#62;&lt;br /&gt;      &amp;#60;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab1&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock which has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;        &amp;#60;Controls&amp;#58;TabItem Header&amp;#61;&amp;#34;Tab2&amp;#34;&amp;#62;&lt;br /&gt;          &amp;#60;TextBlock Text&amp;#61;&amp;#34;My textblock in tab 2 which also has a tooltip&amp;#34;&amp;#62;&lt;br /&gt;            &amp;#60;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;              &amp;#60;CustomToolTips&amp;#58;ToolTip DisplayTime&amp;#61;&amp;#34;Forever&amp;#34;&lt;br /&gt;                                      InitialDelay&amp;#61;&amp;#34;00&amp;#58;00&amp;#58;00&amp;#34;&amp;#62;&lt;br /&gt;                &amp;#60;TextBlock Text&amp;#61;&amp;#34;My ToolTip contents in tab 2&amp;#34;&amp;#47;&amp;#62;&lt;br /&gt;              &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTip&amp;#62;&lt;br /&gt;            &amp;#60;&amp;#47;CustomToolTips&amp;#58;ToolTipService.ToolTip&amp;#62;&lt;br /&gt;          &amp;#60;&amp;#47;TextBlock&amp;#62;&lt;br /&gt;        &amp;#60;&amp;#47;Controls&amp;#58;TabItem&amp;#62;&lt;br /&gt;      &amp;#60;&amp;#47;Controls&amp;#58;TabControl&amp;#62;&lt;br /&gt;    &amp;#60;&amp;#47;Grid&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;UserControl&amp;#62;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;How to reproduce&amp;#58; hold the mouse over the first text that appears. Works as expected. Change to tab2. hold the mouse over the text that appears. Works as expected. Change back to tab1. Now, the tooltip doesnt show up anymore. Change to tab2 and same thing here - the tooltip doesnt show up. The tooltip will not come back until the control is reinstanciated.&lt;br /&gt;&lt;br /&gt;I&amp;#39;ll just post it here for information, and I&amp;#39;ll be back if I manage to fix it myself, but this bug is not a top priority for me so that could take a while...&lt;br /&gt;</description><author>Tewr</author><pubDate>Tue, 25 Oct 2011 16:45:56 GMT</pubDate><guid isPermaLink="false">Created Issue: TabControl Issue [6556] 20111025044556P</guid></item><item><title>Created Issue: Regression due to memory leak fix: some tooltips are not displayed [6360]</title><link>http://tooltipservice.codeplex.com/workitem/6360</link><description>Hi Xavier.&lt;br /&gt;Nice library &amp;#33;&lt;br /&gt;After updating to the latest version I noticed that some of my tooltips were not getting displayed anymore. That is because the Unloaded event deregisters the tooltip. However, the code should take into consideration that UIElements can be unloaded and then reloaded, for example if they get hidden and show again. After commenting that the FrameworkElementUnloaded it worked again. I haven&amp;#39;t tried a fix, but I guess that the code should also re-register the tooltilp when the Loaded event occurs.&lt;br /&gt;</description><author>clement_911</author><pubDate>Sat, 06 Aug 2011 11:15:49 GMT</pubDate><guid isPermaLink="false">Created Issue: Regression due to memory leak fix: some tooltips are not displayed [6360] 20110806111549A</guid></item></channel></rss>