【WPF】坑--应用程序闪烁(鼠标焦点从软件切换到桌面时候发生)
【问题】鼠标焦点从软件切换到桌面时候发生应用程序闪烁
【答案】
这是wpf 程序 重绘造成的。可以通过设置window的TopMost属性解决。TopMost属性让窗体一直保持桌面最上层。微信桌面客户端 就是采用这种方式。
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:RayeUI" xmlns:theme="clr-namespace:RayeUI.Theme.Window" x:Class="RayeUI.MainWindow" Topmost="True" Title="RayeUI" Width="800" Height="500" WindowStartupLocation="CenterScreen" IsHeaderTextVisible="False"> </Window>
编程是个人爱好