以下のようにタグ プロパティからツールヒントを取得しています。タグ プロパティにはツール ヒントが更新されていますが、新しいツール ヒントを作成しているときにツール ヒントが更新されません。マウス ホバーで、この作成ツール ヒント メソッドを呼び出しています。コントロールに更新されたツールチップが表示されない理由を誰かが説明できますか?
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;
}
}
}