From 922eeaa0d8f5dcf94d7caf09a64892bd3b916297 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=AB=98=E6=80=A1=E9=A3=9E?= <363301617@qq.com> Date: Tue, 25 Jun 2024 12:36:43 +0800 Subject: [PATCH] Fix the taskbar flashes issue when using Mile.Xaml.Managed. --- Mile.Xaml.Managed/CoreWindowHost.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Mile.Xaml.Managed/CoreWindowHost.cs b/Mile.Xaml.Managed/CoreWindowHost.cs index a01f877..994f468 100644 --- a/Mile.Xaml.Managed/CoreWindowHost.cs +++ b/Mile.Xaml.Managed/CoreWindowHost.cs @@ -20,6 +20,7 @@ internal class CoreWindowHost : Form public CoreWindowHost() { Controls.Add(new WindowsXamlHost()); + ShowInTaskbar = false; Show(); Hide(); }