From f05bcf6cc8258c410e63e0c8c2dc5cd30eec9936 Mon Sep 17 00:00:00 2001 From: CJKmkp <2564608840@qq.com> Date: Fri, 1 May 2026 10:51:28 +0800 Subject: [PATCH] =?UTF-8?q?improve:ROT=E6=A8=A1=E5=9D=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Ink Canvas/Helpers/PPTUIManager.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Ink Canvas/Helpers/PPTUIManager.cs b/Ink Canvas/Helpers/PPTUIManager.cs index d500fd32..c7415539 100644 --- a/Ink Canvas/Helpers/PPTUIManager.cs +++ b/Ink Canvas/Helpers/PPTUIManager.cs @@ -112,6 +112,11 @@ namespace Ink_Canvas.Helpers MainWindow.MoveWindow(new WindowInteropHelper(_mainWindow).Handle, 0, 0, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height, true); + + // MoveWindow 触发的 WM_WINDOWPOSCHANGING + 重绘会打断面板的 ShowWithFadeIn 动画, + // 在窗口尺寸最终确定后重新评估一次翻页面板的可见性。 + UpdateNavigationPanelsVisibility(); + UpdateNavigationButtonStyles(); }), DispatcherPriority.ApplicationIdle); _mainWindow.isFullScreenApplied = true; // 标记已应用全屏处理