0

我有一个 WPF 应用程序,我想在单击按钮时创建新的 Win32 窗口(因为它是用 C++ 编写的窗口)。而且,我有一个问题。如果我将光标导航到按钮,则会显示工具提示。而且,点击按钮后,工具提示没有时间消失。

我怎样才能防止这种情况?谢谢

4

1 回答 1

0

如果工具提示消失,您可以覆盖工具提示的父资源以禁用动画,如下所示:

<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys="clr-namespace:System;assembly=mscorlib"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
>
<Page.Resources>
    <PopupAnimation x:Key="{x:Static SystemParameters.ToolTipPopupAnimationKey}">None</PopupAnimation>
</Page.Resources>

<Button ToolTip="My ToolTip Content" Content="My Button Content" />

于 2013-02-11T17:52:51.657 回答