WPF应用程序有时会显示任务栏,但窗口设置为全屏

时间:2016-06-29 00:20:32

标签: c# wpf xaml user-interface window

我用WPF UI编写了一个安装程序。在安装先决条件期间,全屏WPF ui失去焦点并且任务栏出现一段时间。目前以下是我的窗口元素的外观。

<Window x:Class="CustomBA.MainView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:resources="clr-namespace:KubeCustomBA.Resources"
    mc:Ignorable="d"
    Title="Installer" Width="1431" MinWidth="400" Height="588.9" MinHeight="300" ResizeMode="NoResize" WindowState="Maximized" ShowInTaskbar="False" Topmost="False" WindowStartupLocation="CenterOwner" WindowStyle="None" Background="#FF222222">

如何避免失去焦点并显示任务栏?任何帮助将不胜感激。

0 个答案:

没有答案