WPF中的工具提示未刷新

时间:2012-05-17 10:01:53

标签: wpf wpf-controls

我正在从tag属性中检索工具提示,如下所示,tag属性已刷新/更正工具提示,但在创建新工具提示时,我没有刷新一个。在鼠标悬停时,我称之为创建工具提示方法。有人可以解释为什么我没有在我的控制中获得刷新的工具提示吗?

private void CreateToolTip(Border border, RealisticControlBase control)
            {
                border.SetValue(ToolTipService.IsEnabledProperty, false);     
                if (control != null)
                {
                    FrameworkElement tooltip = ToolTipService.GetToolTip(border) as FrameworkElement;
                    control.InvalidateArrange();
                    tooltip.InvalidateArrange();
                    if ((control.Tag as string) != null)
                    {
                        string templatename = control.Tag.ToString();
                        object abc=Application.Current.FindResource(templatename);
                        if ((Application.Current.FindResource(templatename) as DataTemplate) != null)
                        {
                            (tooltip as ToolTip).ContentTemplate = Application.Current.FindResource(templatename) as DataTemplate;
                            tooltip.DataContext = control.DataContext;
                            border.SetValue(ToolTipService.IsEnabledProperty, true);
                            (tooltip as ToolTip).Content = control.DataContext;
                        }
                    }
                }

1 个答案:

答案 0 :(得分:0)

我相信正确的问题和答案是为什么不将控件的工具提示绑定到tag属性,让wpf担心刷新逻辑。