我有以下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以确定这是否是问题,但它没有任何区别。
非常感谢有关此问题的任何建议。
谢谢,
大卫
答案 0 :(得分:1)
取而代之的是Activated
和Deactivated
个活动。