1

我有以下 WPF 窗口定义,但是当我点击远离应用程序时,焦点/丢失焦点事件没有触发,有什么想法吗?

<Window x:Class="BevaClient.windowMain"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:l="clr-namespace:BevaClient"
    xmlns:forms="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
    Title="VPN Tool" Height="500" Width="370"
    Focusable="True"
    WindowStyle="None"
    ResizeMode="NoResize"
    Topmost="True"
    Style="{StaticResource defaultWindow}"
    Loaded="Window_Loaded"
    GotFocus="Window_GotFocus"
    LostFocus="Window_LostFocus">

我尝试将 topmost 设置为 false 以查看这是否是问题所在,但这没有区别。

对此问题的任何建议将不胜感激。

谢谢,

大卫

4

1 回答 1

1

而是挂钩Activated和事件。Deactivated

于 2012-10-20T13:32:56.077 回答