using Ink_Canvas.Controls; using Ink_Canvas.Helpers; using iNKORE.UI.WPF.Modern; using System; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Forms; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Interop; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Media.Imaging; using System.Windows.Threading; using Application = System.Windows.Application; using Button = System.Windows.Controls.Button; using Cursors = System.Windows.Input.Cursors; using HorizontalAlignment = System.Windows.HorizontalAlignment; using MessageBox = iNKORE.UI.WPF.Modern.Controls.MessageBox; using MouseEventArgs = System.Windows.Input.MouseEventArgs; using OpenFileDialog = Microsoft.Win32.OpenFileDialog; using Panel = System.Windows.Controls.Panel; using Point = System.Windows.Point; namespace Ink_Canvas { public partial class MainWindow : Window { /// /// 当前工具模式 /// private string _currentToolMode = "cursor"; #region "手勢"按鈕 /// /// 用於浮動工具欄的"手勢"按鈕和白板工具欄的"手勢"按鈕的點擊事件 /// private void TwoFingerGestureBorder_MouseUp(object sender, MouseButtonEventArgs e) { if (TwoFingerGestureBorder.Visibility == Visibility.Visible) { AnimationsHelper.HideWithSlideAndFade(TwoFingerGestureBorder); AnimationsHelper.HideWithSlideAndFade(BoardTwoFingerGestureBorder); } else { HideSubPanels(); UpdateTwoFingerGestureBorderPosition(); AnimationsHelper.ShowWithSlideFromBottomAndFade(TwoFingerGestureBorder); AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardTwoFingerGestureBorder); } } /// /// 用於更新浮動工具欄的"手勢"按鈕和白板工具欄的"手勢"按鈕的樣式(開啟和關閉狀態) /// private void CheckEnableTwoFingerGestureBtnColorPrompt() { // 根据主题选择手势图标和颜色 bool isDarkTheme = Settings.Appearance.Theme == 1 || (Settings.Appearance.Theme == 2 && !IsSystemThemeLight()); bool isLightTheme = !isDarkTheme; string gestureIconPath = isLightTheme ? "/Resources/new-icons/gesture.png" : "/Resources/new-icons/gesture_white.png"; // 根据主题设置白板模式下的颜色 Color boardBgColor, boardIconColor, boardTextColor, boardBorderColor; if (isLightTheme) { // 浅色主题 boardBgColor = Color.FromRgb(244, 244, 245); boardIconColor = Color.FromRgb(24, 24, 27); boardTextColor = Color.FromRgb(24, 24, 27); boardBorderColor = Color.FromRgb(161, 161, 170); } else { // 深色主题 boardBgColor = Color.FromRgb(39, 39, 42); boardIconColor = Color.FromRgb(244, 244, 245); boardTextColor = Color.FromRgb(244, 244, 245); boardBorderColor = Color.FromRgb(113, 113, 122); } if (ToggleSwitchEnableMultiTouchMode.IsOn) { TwoFingerGestureSimpleStackPanel.Opacity = 0.5; TwoFingerGestureSimpleStackPanel.IsHitTestVisible = false; EnableTwoFingerGestureBtn.Source = new BitmapImage(new Uri(gestureIconPath, UriKind.Relative)); BoardGesture.Background = new SolidColorBrush(boardBgColor); BoardGesture.IconGeometryDrawing.Brush = new SolidColorBrush(boardIconColor); BoardGesture.IconGeometryDrawing2.Brush = new SolidColorBrush(boardIconColor); BoardGesture.Foreground = new SolidColorBrush(boardTextColor); BoardGesture.BorderBrush = new SolidColorBrush(boardBorderColor); BoardGesture.IconGeometryDrawing.Geometry = Geometry.Parse(XamlGraphicsIconGeometries.DisabledGestureIcon); BoardGesture.IconGeometryDrawing2.Geometry = Geometry.Parse("F0 M24,24z M0,0z"); } else { TwoFingerGestureSimpleStackPanel.Opacity = 1; TwoFingerGestureSimpleStackPanel.IsHitTestVisible = true; if (Settings.Gesture.IsEnableTwoFingerGesture) { EnableTwoFingerGestureBtn.Source = new BitmapImage(new Uri("/Resources/new-icons/gesture-enabled.png", UriKind.Relative)); BoardGesture.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardGesture.IconGeometryDrawing.Brush = new SolidColorBrush(Colors.GhostWhite); BoardGesture.IconGeometryDrawing2.Brush = new SolidColorBrush(Colors.GhostWhite); BoardGesture.Foreground = new SolidColorBrush(Colors.GhostWhite); BoardGesture.BorderBrush = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardGesture.IconGeometryDrawing.Geometry = Geometry.Parse(XamlGraphicsIconGeometries.EnabledGestureIcon); BoardGesture.IconGeometryDrawing2.Geometry = Geometry.Parse("F0 M24,24z M0,0z " + XamlGraphicsIconGeometries.EnabledGestureIconBadgeCheck); } else { EnableTwoFingerGestureBtn.Source = new BitmapImage(new Uri(gestureIconPath, UriKind.Relative)); BoardGesture.Background = new SolidColorBrush(boardBgColor); BoardGesture.IconGeometryDrawing.Brush = new SolidColorBrush(boardIconColor); BoardGesture.IconGeometryDrawing2.Brush = new SolidColorBrush(boardIconColor); BoardGesture.Foreground = new SolidColorBrush(boardTextColor); BoardGesture.BorderBrush = new SolidColorBrush(boardBorderColor); BoardGesture.IconGeometryDrawing.Geometry = Geometry.Parse(XamlGraphicsIconGeometries.DisabledGestureIcon); BoardGesture.IconGeometryDrawing2.Geometry = Geometry.Parse("F0 M24,24z M0,0z"); } } } /// /// 控制是否顯示浮動工具欄的"手勢"按鈕 /// private void CheckEnableTwoFingerGestureBtnVisibility(bool isVisible) { // 在PPT放映模式下根据设置决定是否显示手势按钮 if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { // 如果启用了PPT放映模式显示手势按钮,且当前处于批注模式,则显示手势按钮 if (Settings.PowerPointSettings.ShowGestureButtonInSlideShow && isVisible && inkCanvas.EditingMode == InkCanvasEditingMode.Ink) { EnableTwoFingerGestureBorder.Visibility = Visibility.Visible; } else { EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; } return; } if (currentMode == 0) { if (GridTransparencyFakeBackground.Background != Brushes.Transparent && isVisible) { } else { EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; return; } } if (StackPanelCanvasControls.Visibility != Visibility.Visible || BorderFloatingBarMainControls.Visibility != Visibility.Visible) { EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; } else if (isVisible) { EnableTwoFingerGestureBorder.Visibility = Visibility.Visible; } else { EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; } } #endregion "手勢"按鈕 #region 浮動工具欄的拖動實現 /// /// 是否正在拖动浮动工具栏 /// private bool isDragDropInEffect; /// /// 当前位置 /// private Point pos; /// /// 按下鼠标时的位置 /// private Point downPos; /// /// 用于记录上次在桌面时的坐标 /// private Point pointDesktop = new Point(-1, -1); /// /// 用于记录上次在PPT中的坐标 /// private Point pointPPT = new Point(-1, -1); /// /// 浮动工具栏移动事件处理 /// /// 发送者 /// 鼠标事件参数 private void SymbolIconEmoji_MouseMove(object sender, MouseEventArgs e) { if (isDragDropInEffect) { var xPos = e.GetPosition(null).X - pos.X + ViewboxFloatingBar.Margin.Left; var yPos = e.GetPosition(null).Y - pos.Y + ViewboxFloatingBar.Margin.Top; ViewboxFloatingBar.Margin = new Thickness(xPos, yPos, -2000, -200); pos = e.GetPosition(null); if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) pointPPT = new Point(xPos, yPos); else pointDesktop = new Point(xPos, yPos); } } /// /// 浮动工具栏鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void SymbolIconEmoji_MouseDown(object sender, MouseButtonEventArgs e) { if (isViewboxFloatingBarMarginAnimationRunning) { ViewboxFloatingBar.BeginAnimation(MarginProperty, null); isViewboxFloatingBarMarginAnimationRunning = false; } isDragDropInEffect = true; pos = e.GetPosition(null); downPos = e.GetPosition(null); GridForFloatingBarDraging.Visibility = Visibility.Visible; } /// /// 浮动工具栏鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 internal void SymbolIconEmoji_MouseUp(object sender, MouseButtonEventArgs e) { isDragDropInEffect = false; if (e is null || (Math.Abs(downPos.X - e.GetPosition(null).X) <= 10 && Math.Abs(downPos.Y - e.GetPosition(null).Y) <= 10)) { if (BorderFloatingBarMainControls.Visibility == Visibility.Visible) { BorderFloatingBarMainControls.Visibility = Visibility.Collapsed; CheckEnableTwoFingerGestureBtnVisibility(false); } else { BorderFloatingBarMainControls.Visibility = Visibility.Visible; CheckEnableTwoFingerGestureBtnVisibility(true); } } GridForFloatingBarDraging.Visibility = Visibility.Collapsed; } #endregion 浮動工具欄的拖動實現 #region 隱藏子面板和按鈕背景高亮 /// /// 隐藏形状绘制面板 /// private void CollapseBorderDrawShape() { AnimationsHelper.HideWithSlideAndFade(BorderDrawShape); AnimationsHelper.HideWithSlideAndFade(BoardBorderDrawShape); } /// /// HideSubPanels的简化版,立即隐藏所有子面板,无动画效果 /// private void HideSubPanelsImmediately() { BorderTools.Visibility = Visibility.Collapsed; BoardBorderTools.Visibility = Visibility.Collapsed; PenPalette.Visibility = Visibility.Collapsed; BoardPenPalette.Visibility = Visibility.Collapsed; BoardEraserSizePanel.Visibility = Visibility.Collapsed; EraserSizePanel.Visibility = Visibility.Collapsed; BorderSettings.Visibility = Visibility.Collapsed; BoardBorderLeftPageListView.Visibility = Visibility.Collapsed; BoardBorderRightPageListView.Visibility = Visibility.Collapsed; BoardImageOptionsPanel.Visibility = Visibility.Collapsed; TwoFingerGestureBorder.Visibility = Visibility.Collapsed; BoardTwoFingerGestureBorder.Visibility = Visibility.Collapsed; // 添加隐藏图形工具的二级菜单面板 BorderDrawShape.Visibility = Visibility.Collapsed; BoardBorderDrawShape.Visibility = Visibility.Collapsed; if (LogicalTreeHelper.FindLogicalNode(this, "BackgroundPalette") is Border bgPalette) { bgPalette.Visibility = Visibility.Collapsed; } } /// /// /// 易嚴定真,這個多功能函數包括了以下的內容: /// /// /// /// 隱藏浮動工具欄和白板模式下的"更多功能"面板 /// /// /// 隱藏白板模式下和浮動工具欄的畫筆調色盤 /// /// /// 隱藏白板模式下的"清屏"按鈕(已作廢) /// /// /// 負責給Settings設置面板做隱藏動畫 /// /// /// 隱藏白板模式下和浮動工具欄的"手勢"面板 /// /// /// 當ToggleSwitchDrawShapeBorderAutoHide開啟時,會自動隱藏白板模式下和浮動工具欄的"形狀"面板 /// /// /// 按需高亮指定的浮動工具欄和白板工具欄中的按鈕,通過param: 來指定 /// /// /// 將浮動工具欄自動居中,通過param: /// /// /// /// /// /// 按需高亮指定的浮動工具欄和白板工具欄中的按鈕,有下面幾種情況: /// /// /// /// 當==null時,不會執行任何有關操作 /// /// /// 當!="clear"時,會先取消高亮所有工具欄按鈕,然後根據下面的情況進行高亮處理 /// /// /// 當=="color" || =="pen"時,會高亮浮動工具欄和白板工具欄中的"批註","筆"按鈕 /// /// /// 當=="eraser"時,會高亮白板工具欄中的"橡皮"和浮動工具欄中的"面積擦"按鈕 /// /// /// 當=="eraserByStrokes"時,會高亮白板工具欄中的"橡皮"和浮動工具欄中的"墨跡擦"按鈕 /// /// /// 當=="select"時,會高亮浮動工具欄和白板工具欄中的"選擇","套索選"按鈕 /// /// /// /// /// 是否自動居中浮動工具欄 /// internal async void HideSubPanels(string mode = null, bool autoAlignCenter = false) { AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(PenPalette); AnimationsHelper.HideWithSlideAndFade(BoardPenPalette); AnimationsHelper.HideWithSlideAndFade(BoardEraserSizePanel); AnimationsHelper.HideWithSlideAndFade(EraserSizePanel); AnimationsHelper.HideWithSlideAndFade(BorderDrawShape); AnimationsHelper.HideWithSlideAndFade(BoardBorderLeftPageListView); AnimationsHelper.HideWithSlideAndFade(BoardBorderRightPageListView); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); AnimationsHelper.HideWithSlideAndFade(TwoFingerGestureBorder); AnimationsHelper.HideWithSlideAndFade(BoardTwoFingerGestureBorder); // 隐藏背景设置面板 if (LogicalTreeHelper.FindLogicalNode(this, "BackgroundPalette") is Border bgPalette) { AnimationsHelper.HideWithSlideAndFade(bgPalette); } if (BorderSettings.Visibility == Visibility.Visible) { // 设置蒙版为不可点击,并移除背景 BorderSettingsMask.IsHitTestVisible = false; BorderSettingsMask.Background = null; var sb = new Storyboard(); // 滑动动画 var slideAnimation = new DoubleAnimation { From = 0, // 滑动距离 To = BorderSettings.RenderTransform.Value.OffsetX - 490, Duration = TimeSpan.FromSeconds(0.6), EasingFunction = new CubicEase { EasingMode = EasingMode.EaseOut } }; Storyboard.SetTargetProperty(slideAnimation, new PropertyPath("(UIElement.RenderTransform).(TranslateTransform.X)")); sb.Children.Add(slideAnimation); sb.Completed += (s, _) => { BorderSettings.Visibility = Visibility.Collapsed; isOpeningOrHidingSettingsPane = false; if (isTemporarilyDisablingNoFocusMode) { isTemporarilyDisablingNoFocusMode = false; ApplyNoFocusMode(); } }; BorderSettings.RenderTransform = new TranslateTransform(); isOpeningOrHidingSettingsPane = true; sb.Begin(BorderSettings); } AnimationsHelper.HideWithSlideAndFade(TwoFingerGestureBorder); AnimationsHelper.HideWithSlideAndFade(EraserSizePanel); AnimationsHelper.HideWithSlideAndFade(BoardTwoFingerGestureBorder); if (ToggleSwitchDrawShapeBorderAutoHide.IsOn) { AnimationsHelper.HideWithSlideAndFade(BorderDrawShape); AnimationsHelper.HideWithSlideAndFade(BoardBorderDrawShape); } if (mode != null) { if (mode != "clear") { Cursor_Icon.Icon.Brush = new SolidColorBrush(FloatBarForegroundColor); Cursor_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("cursor", false)); Pen_Icon.Icon.Brush = new SolidColorBrush(FloatBarForegroundColor); Pen_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("pen", false)); EraserByStrokes_Icon.Icon.Brush = new SolidColorBrush(FloatBarForegroundColor); EraserByStrokes_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("eraserStroke", false)); Eraser_Icon.Icon.Brush = new SolidColorBrush(FloatBarForegroundColor); Eraser_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("eraserCircle", false)); SymbolIconSelect.Icon.Brush = new SolidColorBrush(FloatBarForegroundColor); SymbolIconSelect.Icon.Geometry = Geometry.Parse(GetCorrectIcon("lassoSelect", false)); bool isDarkThemeForButtons = Settings.Appearance.Theme == 1 || (Settings.Appearance.Theme == 2 && !IsSystemThemeLight()); if (isDarkThemeForButtons) { BoardPen.Background = new SolidColorBrush(Color.FromRgb(42, 42, 42)); BoardSelect.Background = new SolidColorBrush(Color.FromRgb(42, 42, 42)); BoardEraser.Background = new SolidColorBrush(Color.FromRgb(42, 42, 42)); BoardSelect.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardPen.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardEraser.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardPen.Foreground = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardSelect.Foreground = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardEraser.Foreground = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardSelect.BorderBrush = new SolidColorBrush(Color.FromRgb(85, 85, 85)); BoardEraser.BorderBrush = new SolidColorBrush(Color.FromRgb(85, 85, 85)); BoardPen.BorderBrush = new SolidColorBrush(Color.FromRgb(85, 85, 85)); } else { BoardPen.Background = new SolidColorBrush(Color.FromRgb(244, 244, 245)); BoardSelect.Background = new SolidColorBrush(Color.FromRgb(244, 244, 245)); BoardEraser.Background = new SolidColorBrush(Color.FromRgb(244, 244, 245)); BoardSelect.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardPen.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardEraser.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardPen.Foreground = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardSelect.Foreground = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardEraser.Foreground = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardSelect.BorderBrush = new SolidColorBrush(Color.FromRgb(161, 161, 170)); BoardEraser.BorderBrush = new SolidColorBrush(Color.FromRgb(161, 161, 170)); BoardPen.BorderBrush = new SolidColorBrush(Color.FromRgb(161, 161, 170)); } HideFloatingBarHighlight(); } // 根据主题选择高光颜色 Color highlightColor; bool isDarkTheme = Settings.Appearance.Theme == 1 || (Settings.Appearance.Theme == 2 && !IsSystemThemeLight()); if (isDarkTheme) { highlightColor = Color.FromRgb(102, 204, 255); // #66ccff for dark theme } else { highlightColor = Color.FromRgb(30, 58, 138); // Keep current color for light theme } switch (mode) { case "pen": case "color": { Pen_Icon.Icon.Brush = new SolidColorBrush(highlightColor); Pen_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("pen", true)); BoardPen.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardPen.BorderBrush = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardPen.IconGeometryDrawing.Brush = new SolidColorBrush(Colors.GhostWhite); BoardPen.Foreground = new SolidColorBrush(Colors.GhostWhite); SetFloatingBarHighlightPosition("pen"); break; } case "eraser": { Eraser_Icon.Icon.Brush = new SolidColorBrush(highlightColor); Eraser_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("eraserCircle", true)); BoardEraser.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardEraser.BorderBrush = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardEraser.IconGeometryDrawing.Brush = new SolidColorBrush(Colors.GhostWhite); BoardEraser.Foreground = new SolidColorBrush(Colors.GhostWhite); SetFloatingBarHighlightPosition("eraser"); break; } case "eraserByStrokes": { EraserByStrokes_Icon.Icon.Brush = new SolidColorBrush(highlightColor); EraserByStrokes_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("eraserStroke", true)); BoardEraser.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardEraser.BorderBrush = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardEraser.IconGeometryDrawing.Brush = new SolidColorBrush(Colors.GhostWhite); BoardEraser.Foreground = new SolidColorBrush(Colors.GhostWhite); SetFloatingBarHighlightPosition("eraserByStrokes"); break; } case "select": { SymbolIconSelect.Icon.Brush = new SolidColorBrush(highlightColor); SymbolIconSelect.Icon.Geometry = Geometry.Parse(GetCorrectIcon("lassoSelect", true)); BoardSelect.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardSelect.BorderBrush = new SolidColorBrush(Color.FromRgb(37, 99, 235)); BoardSelect.IconGeometryDrawing.Brush = new SolidColorBrush(Colors.GhostWhite); BoardSelect.Foreground = new SolidColorBrush(Colors.GhostWhite); SetFloatingBarHighlightPosition("select"); break; } case "cursor": { Cursor_Icon.Icon.Brush = new SolidColorBrush(highlightColor); Cursor_Icon.Icon.Geometry = Geometry.Parse(GetCorrectIcon("cursor", true)); bool isDarkThemeForCursor = Settings.Appearance.Theme == 1 || (Settings.Appearance.Theme == 2 && !IsSystemThemeLight()); if (isDarkThemeForCursor) { BoardPen.Background = new SolidColorBrush(Color.FromRgb(42, 42, 42)); BoardPen.BorderBrush = new SolidColorBrush(Color.FromRgb(85, 85, 85)); BoardPen.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(255, 255, 255)); BoardPen.Foreground = new SolidColorBrush(Color.FromRgb(255, 255, 255)); } else { BoardPen.Background = new SolidColorBrush(Color.FromRgb(244, 244, 245)); BoardPen.BorderBrush = new SolidColorBrush(Color.FromRgb(161, 161, 170)); BoardPen.IconGeometryDrawing.Brush = new SolidColorBrush(Color.FromRgb(24, 24, 27)); BoardPen.Foreground = new SolidColorBrush(Color.FromRgb(24, 24, 27)); } SetFloatingBarHighlightPosition("cursor"); break; } case "shape": { // 对图形模式进行特殊处理,不修改按钮UI状态 // 只隐藏相关面板,但保持图形绘制模式 break; } } if (autoAlignCenter) // 控制居中 { if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { await Task.Delay(50); ViewboxFloatingBarMarginAnimation(60); } else if (Topmost) //非黑板 { await Task.Delay(50); ViewboxFloatingBarMarginAnimation(100, true); } else //黑板 { await Task.Delay(50); ViewboxFloatingBarMarginAnimation(60); } } } await Task.Delay(150); isHidingSubPanelsWhenInking = false; } #endregion #region 撤銷重做按鈕 /// /// 撤销按钮点击事件处理 /// /// 发送者 /// 鼠标按钮事件参数 internal void SymbolIconUndo_MouseUp(object sender, MouseButtonEventArgs e) { if (!BtnUndo.IsEnabled) return; BtnUndo_Click(BtnUndo, null); HideSubPanels(); } /// /// 重做按钮点击事件处理 /// /// 发送者 /// 鼠标按钮事件参数 internal void SymbolIconRedo_MouseUp(object sender, RoutedEventArgs e) { if (!BtnRedo.IsEnabled) return; BtnRedo_Click(BtnRedo, null); HideSubPanels(); } #endregion #region 白板按鈕和退出白板模式按鈕 /// /// 是否正在显示或隐藏黑板 /// private bool isDisplayingOrHidingBlackboard; /// /// 白板按钮点击事件处理 /// /// 发送者 /// 鼠标按钮事件参数 internal void ImageBlackboard_MouseUp(object sender, MouseButtonEventArgs e) { LeftUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; RightUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; if (isDisplayingOrHidingBlackboard) return; isDisplayingOrHidingBlackboard = true; UnFoldFloatingBar_MouseUp(null, null); if (inkCanvas.EditingMode == InkCanvasEditingMode.Select) PenIcon_Click(null, null); if (currentMode == 0) { LeftBottomPanelForPPTNavigation.Visibility = Visibility.Collapsed; RightBottomPanelForPPTNavigation.Visibility = Visibility.Collapsed; LeftSidePanelForPPTNavigation.Visibility = Visibility.Collapsed; RightSidePanelForPPTNavigation.Visibility = Visibility.Collapsed; //進入黑板 /* if (Not_Enter_Blackboard_fir_Mouse_Click) {// BUG-Fixed_tmp:程序启动后直接进入白板会导致后续撤销功能、退出白板无法恢复墨迹 BtnColorRed_Click(BorderPenColorRed, null); await Task.Delay(200); SimulateMouseClick.SimulateMouseClickAtTopLeft(); await Task.Delay(10); Not_Enter_Blackboard_fir_Mouse_Click = false; } */ new Thread(() => { Thread.Sleep(100); Application.Current.Dispatcher.Invoke(() => { ViewboxFloatingBarMarginAnimation(60); }); }).Start(); HideSubPanels(); if (GridTransparencyFakeBackground.Background == Brushes.Transparent) { if (currentMode == 1) { currentMode = 0; GridBackgroundCover.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BlackboardLeftSide); AnimationsHelper.HideWithSlideAndFade(BlackboardCenterSide); AnimationsHelper.HideWithSlideAndFade(BlackboardRightSide); } BtnHideInkCanvas_Click(BtnHideInkCanvas, null); } if (Settings.Gesture.AutoSwitchTwoFingerGesture) // 自动关闭多指书写、开启双指移动 { ToggleSwitchEnableTwoFingerTranslate.IsOn = true; if (isInMultiTouchMode) ToggleSwitchEnableMultiTouchMode.IsOn = false; } if (Settings.Appearance.EnableTimeDisplayInWhiteboardMode) { WaterMarkTime.Visibility = Visibility.Visible; WaterMarkDate.Visibility = Visibility.Visible; } else { WaterMarkTime.Visibility = Visibility.Collapsed; WaterMarkDate.Visibility = Visibility.Collapsed; } if (Settings.Appearance.EnableChickenSoupInWhiteboardMode) { BlackBoardWaterMark.Visibility = Visibility.Visible; } else { BlackBoardWaterMark.Visibility = Visibility.Collapsed; } _ = UpdateChickenSoupTextAsync().ContinueWith(t => { if (t.IsFaulted) { try { LogHelper.WriteLogToFile($"进入白板模式时更新名言失败: {t.Exception?.GetBaseException().Message}", LogHelper.LogType.Warning); } catch { } if (Settings.Appearance.EnableChickenSoupInWhiteboardMode && Settings.Appearance.ChickenSoupSource != 3) { try { if (Settings.Appearance.ChickenSoupSource == 0) { int randChickenSoupIndex = new Random().Next(ChickenSoup.OSUPlayerYuLu.Length); BlackBoardWaterMark.Text = ChickenSoup.OSUPlayerYuLu[randChickenSoupIndex]; } else if (Settings.Appearance.ChickenSoupSource == 1) { int randChickenSoupIndex = new Random().Next(ChickenSoup.MingYanJingJu.Length); BlackBoardWaterMark.Text = ChickenSoup.MingYanJingJu[randChickenSoupIndex]; } else if (Settings.Appearance.ChickenSoupSource == 2) { int randChickenSoupIndex = new Random().Next(ChickenSoup.GaoKaoPhrases.Length); BlackBoardWaterMark.Text = ChickenSoup.GaoKaoPhrases[randChickenSoupIndex]; } } catch { BlackBoardWaterMark.Visibility = Visibility.Collapsed; } } else if (Settings.Appearance.EnableChickenSoupInWhiteboardMode && Settings.Appearance.ChickenSoupSource == 3) { BlackBoardWaterMark.Text = "一言功能不可用"; } } }, TaskScheduler.FromCurrentSynchronizationContext()); if (Settings.Canvas.UsingWhiteboard) { ICCWaterMarkDark.Visibility = Visibility.Visible; ICCWaterMarkWhite.Visibility = Visibility.Collapsed; } else { ICCWaterMarkWhite.Visibility = Visibility.Visible; ICCWaterMarkDark.Visibility = Visibility.Collapsed; } ViewboxFloatingBar.Visibility = Visibility.Collapsed; } else { //关闭黑板 HideSubPanelsImmediately(); // 只有在PPT放映模式下且页数有效时才显示翻页按钮 if (StackPanelPPTControls.Visibility == Visibility.Visible && BtnPPTSlideShowEnd.Visibility == Visibility.Visible && PPTManager?.IsInSlideShow == true && PPTManager?.SlidesCount > 0) { var dops = Settings.PowerPointSettings.PPTButtonsDisplayOption.ToString(); var dopsc = dops.ToCharArray(); if (dopsc[0] == '2' && !isDisplayingOrHidingBlackboard) AnimationsHelper.ShowWithFadeIn(LeftBottomPanelForPPTNavigation); if (dopsc[1] == '2' && !isDisplayingOrHidingBlackboard) AnimationsHelper.ShowWithFadeIn(RightBottomPanelForPPTNavigation); if (dopsc[2] == '2' && !isDisplayingOrHidingBlackboard) AnimationsHelper.ShowWithFadeIn(LeftSidePanelForPPTNavigation); if (dopsc[3] == '2' && !isDisplayingOrHidingBlackboard) AnimationsHelper.ShowWithFadeIn(RightSidePanelForPPTNavigation); } else { // 如果不在放映模式或页数无效,隐藏所有翻页按钮 LeftBottomPanelForPPTNavigation.Visibility = Visibility.Collapsed; RightBottomPanelForPPTNavigation.Visibility = Visibility.Collapsed; LeftSidePanelForPPTNavigation.Visibility = Visibility.Collapsed; RightSidePanelForPPTNavigation.Visibility = Visibility.Collapsed; } // 使用PPT UI管理器来正确更新翻页按钮显示状态,确保遵循用户设置 _pptUIManager?.UpdateNavigationPanelsVisibility(); if (Settings.Automation.IsAutoSaveStrokesAtClear && inkCanvas.Strokes.Count > Settings.Automation.MinimumAutomationStrokeNumber) CaptureAndEnqueueScreenshotSave(true); if (BtnPPTSlideShowEnd.Visibility == Visibility.Collapsed) new Thread(() => { Thread.Sleep(300); Application.Current.Dispatcher.Invoke(() => { ViewboxFloatingBarMarginAnimation(100, true); }); }).Start(); else new Thread(() => { Thread.Sleep(300); Application.Current.Dispatcher.Invoke(() => { ViewboxFloatingBarMarginAnimation(60); }); }).Start(); if (System.Windows.Controls.Canvas.GetLeft(FloatingbarSelectionBG) != 28) PenIcon_Click(null, null); if (Settings.Gesture.AutoSwitchTwoFingerGesture) // 自动启用多指书写 ToggleSwitchEnableTwoFingerTranslate.IsOn = false; // 2024.5.2 need to be tested // if (!isInMultiTouchMode) ToggleSwitchEnableMultiTouchMode.IsOn = true; WaterMarkTime.Visibility = Visibility.Collapsed; WaterMarkDate.Visibility = Visibility.Collapsed; BlackBoardWaterMark.Visibility = Visibility.Collapsed; ICCWaterMarkDark.Visibility = Visibility.Collapsed; ICCWaterMarkWhite.Visibility = Visibility.Collapsed; // 新增:退出白板模式时恢复基础浮动栏的显示 ViewboxFloatingBar.Visibility = Visibility.Visible; } BtnSwitch_Click(BtnSwitch, null); if (currentMode == 0) { // 根据当前编辑模式正确设置工具模式和高光位置 if (inkCanvas.EditingMode == InkCanvasEditingMode.None) { UpdateCurrentToolMode("cursor"); SetFloatingBarHighlightPosition("cursor"); } else if (inkCanvas.EditingMode == InkCanvasEditingMode.Ink) { UpdateCurrentToolMode("pen"); SetFloatingBarHighlightPosition("pen"); } else if (inkCanvas.EditingMode == InkCanvasEditingMode.EraseByPoint) { UpdateCurrentToolMode("eraser"); SetFloatingBarHighlightPosition("eraser"); } else if (inkCanvas.EditingMode == InkCanvasEditingMode.EraseByStroke) { UpdateCurrentToolMode("eraserByStrokes"); SetFloatingBarHighlightPosition("eraserByStrokes"); } else if (inkCanvas.EditingMode == InkCanvasEditingMode.Select) { UpdateCurrentToolMode("select"); SetFloatingBarHighlightPosition("select"); } } if (currentMode == 0 && inkCanvas.Strokes.Count == 0 && BtnPPTSlideShowEnd.Visibility != Visibility.Visible) CursorIcon_Click(null, null); BtnExit.Foreground = Brushes.White; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark; new Thread(() => { Thread.Sleep(200); Application.Current.Dispatcher.Invoke(() => { isDisplayingOrHidingBlackboard = false; }); }).Start(); SwitchToDefaultPen(null, null); CheckColorTheme(true); } #endregion /// /// 光标图标点击事件处理 /// /// 发送者 /// 路由事件参数 private async void SymbolIconCursor_Click(object sender, RoutedEventArgs e) { if (currentMode != 0) { ImageBlackboard_MouseUp(null, null); } else { BtnHideInkCanvas_Click(BtnHideInkCanvas, null); if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { await Task.Delay(100); ViewboxFloatingBarMarginAnimation(60); } } } #region 清空畫布按鈕 /// /// 清空画布按钮点击事件处理 /// /// 发送者 /// 鼠标按钮事件参数 internal void SymbolIconDelete_MouseUp(object sender, MouseButtonEventArgs e) { if (inkCanvas.GetSelectedStrokes().Count > 0) { inkCanvas.Strokes.Remove(inkCanvas.GetSelectedStrokes()); GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; } else if (inkCanvas.Strokes.Count > 0) { if (Settings.Automation.IsAutoSaveStrokesAtClear && inkCanvas.Strokes.Count > Settings.Automation.MinimumAutomationStrokeNumber) { if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0; var presentationName = _pptManager?.GetPresentationName() ?? ""; CaptureAndEnqueueScreenshotSave(true, $"{presentationName}/{currentSlide}_{DateTime.Now:HH-mm-ss}"); } else CaptureAndEnqueueScreenshotSave(true); } BtnClear_Click(null, null); } } #endregion /// /// 面积擦子面板的清空墨迹按钮事件处理 /// /// sender /// RoutedEventArgs private void EraserPanelSymbolIconDelete_MouseUp(object sender, RoutedEventArgs e) { PenIcon_Click(null, null); SymbolIconDelete_MouseUp(null, null); } #region 主要的工具按鈕事件 /// /// 浮动工具栏的"套索选"按钮事件,重定向到旧UI的BtnSelect_Click方法 /// /// 发送者 /// 鼠标按钮事件参数 internal void SymbolIconSelect_MouseUp(object sender, MouseButtonEventArgs e) { if (lastBorderMouseDownObject is Panel panel) panel.Background = new SolidColorBrush(Colors.Transparent); BtnSelect_Click(null, null); // 更新模式缓存 UpdateCurrentToolMode("select"); HideSubPanels("select"); } #endregion /// /// 浮动工具栏按钮鼠标按下反馈效果处理 /// /// 发送者 /// 鼠标按钮事件参数 private void FloatingBarToolBtnMouseDownFeedback_Panel(object sender, MouseButtonEventArgs e) { if (sender is Panel panel) { lastBorderMouseDownObject = sender; panel.Background = new SolidColorBrush(Color.FromArgb(28, 24, 24, 27)); } else if (sender is Border border) { lastBorderMouseDownObject = sender; if (border.Name?.StartsWith("QuickColor") == true) { if (border.Background is SolidColorBrush originalColor) { border.Background = new SolidColorBrush(Color.FromArgb(180, originalColor.Color.R, originalColor.Color.G, originalColor.Color.B)); } } else { border.Background = new SolidColorBrush(Color.FromArgb(28, 24, 24, 27)); } } else if (sender is Ink_Canvas.Controls.ColorPickerButton colorPicker) { lastBorderMouseDownObject = sender; } } /// /// 浮动工具栏按钮鼠标离开反馈效果处理 /// /// 发送者 /// 鼠标事件参数 private void FloatingBarToolBtnMouseLeaveFeedback_Panel(object sender, MouseEventArgs e) { if (sender is Panel panel) { lastBorderMouseDownObject = null; panel.Background = new SolidColorBrush(Colors.Transparent); } else if (sender is Border border) { lastBorderMouseDownObject = null; // 对于快捷调色板的颜色球,恢复原始颜色 if (border.Name?.StartsWith("QuickColor") == true) { // 根据颜色球名称恢复对应的颜色 switch (border.Name) { case "QuickColorWhite": case "QuickColorWhiteSingle": border.Background = new SolidColorBrush(Colors.White); break; case "QuickColorOrange": case "QuickColorOrangeSingle": border.Background = new SolidColorBrush(Color.FromRgb(251, 150, 80)); break; case "QuickColorYellow": case "QuickColorYellowSingle": border.Background = new SolidColorBrush(Colors.Yellow); break; case "QuickColorBlack": case "QuickColorBlackSingle": border.Background = new SolidColorBrush(Colors.Black); break; case "QuickColorBlue": border.Background = new SolidColorBrush(Color.FromRgb(37, 99, 235)); break; case "QuickColorRed": case "QuickColorRedSingle": border.Background = new SolidColorBrush(Colors.Red); break; case "QuickColorGreen": case "QuickColorGreenSingle": border.Background = new SolidColorBrush(Color.FromRgb(22, 163, 74)); break; case "QuickColorPurple": border.Background = new SolidColorBrush(Color.FromRgb(147, 51, 234)); break; } } else { border.Background = new SolidColorBrush(Colors.Transparent); } } else if (sender is Ink_Canvas.Controls.ColorPickerButton colorPicker) { lastBorderMouseDownObject = null; } } /// /// 设置图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void SymbolIconSettings_Click(object sender, MouseButtonEventArgs e) { if (isOpeningOrHidingSettingsPane) return; HideSubPanels(); BtnSettings_Click(null, null); } /// /// 截图图标点击事件处理 /// /// 发送者 /// 路由事件参数 private async void SymbolIconScreenshot_MouseUp(object sender, MouseButtonEventArgs e) { HideSubPanelsImmediately(); await Task.Delay(50); // 白板模式下默认全屏截图到桌面;其余模式默认调用可选区截图 if (currentMode == 1) { SaveScreenShotToDesktop(); } else { await SaveAreaScreenShotToDesktop(); } } /// /// 倒计时计时器图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void ImageCountdownTimer_MouseUp(object sender, MouseButtonEventArgs e) { LeftUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; RightUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); if (Settings.RandSettings?.UseNewStyleUI == true) { if (TimerContainer != null && TimerControl != null) { // 每次打开计时器窗口时重置计时器 TimerControl.ResetTimerState(); // 根据DPI缩放因子调整TimerContainer的尺寸 AdjustTimerContainerSize(); TimerContainer.Visibility = Visibility.Visible; if (MinimizedTimerContainer != null) { MinimizedTimerContainer.Visibility = Visibility.Collapsed; } TimerControl.CloseRequested += (s, args) => { TimerContainer.Visibility = Visibility.Collapsed; if (MinimizedTimerContainer != null) { MinimizedTimerContainer.Visibility = Visibility.Collapsed; } }; } } else { if (currentMode == 1) { Topmost = false; } var timerWindow = CountdownTimerWindow.CreateTimerWindow(); timerWindow.Show(); if (currentMode == 1) { timerWindow.Topmost = true; } } } /// /// 操作指南窗口图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void OperatingGuideWindowIcon_MouseUp(object sender, MouseButtonEventArgs e) { AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); new OperatingGuideWindow().Show(); } /// /// 随机点名图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void SymbolIconRand_MouseUp(object sender, MouseButtonEventArgs e) { // 如果控件被隐藏,不处理事件 if (BoardRandomDrawToolBtn.Visibility != Visibility.Visible) return; LeftUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; RightUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); // 根据设置决定使用哪个点名窗口 if (Settings.RandSettings.UseNewRollCallUI) { // 使用新点名UI - 随机抽模式 new NewStyleRollCallWindow(Settings, false).ShowDialog(); } else { // 使用默认的随机点名窗口 var randWindow = new RandWindow(Settings); randWindow.Show(); // 使用延迟确保窗口完全显示后再强制置顶 randWindow.Dispatcher.BeginInvoke(new Action(() => { try { // 强制激活窗口 randWindow.Activate(); randWindow.Focus(); // 设置置顶 randWindow.Topmost = true; // 使用Win32 API强制置顶 var hwnd = new WindowInteropHelper(randWindow).Handle; if (hwnd != IntPtr.Zero) { const int WS_EX_TOPMOST = 0x00000008; const int GWL_EXSTYLE = -20; const int SWP_NOMOVE = 0x0002; const int SWP_NOSIZE = 0x0001; const int SWP_SHOWWINDOW = 0x0040; const int SWP_NOOWNERZORDER = 0x0200; var HWND_TOPMOST = new IntPtr(-1); // 设置窗口样式为置顶 int exStyle = GetWindowLong(hwnd, GWL_EXSTYLE); SetWindowLong(hwnd, GWL_EXSTYLE, exStyle | WS_EX_TOPMOST); // 强制置顶 SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_SHOWWINDOW | SWP_NOOWNERZORDER); } } catch (Exception ex) { LogHelper.WriteLogToFile($"强制置顶RandWindow失败: {ex.Message}", LogHelper.LogType.Error); } }), DispatcherPriority.Loaded); } } /// /// 检查并更新橡皮擦类型标签的状态 /// public void CheckEraserTypeTab() { if (Settings.Canvas.EraserShapeType == 0) { CircleEraserTabButton.Background = new SolidColorBrush(Color.FromArgb(85, 59, 130, 246)); CircleEraserTabButton.Opacity = 1; CircleEraserTabButtonText.FontWeight = FontWeights.Bold; CircleEraserTabButtonText.Margin = new Thickness(2, 0.5, 0, 0); CircleEraserTabButtonText.FontSize = 9.5; CircleEraserTabButtonIndicator.Visibility = Visibility.Visible; RectangleEraserTabButton.Background = new SolidColorBrush(Colors.Transparent); RectangleEraserTabButton.Opacity = 0.75; RectangleEraserTabButtonText.FontWeight = FontWeights.Normal; RectangleEraserTabButtonText.FontSize = 9; RectangleEraserTabButtonText.Margin = new Thickness(2, 1, 0, 0); RectangleEraserTabButtonIndicator.Visibility = Visibility.Collapsed; BoardCircleEraserTabButton.Background = new SolidColorBrush(Color.FromArgb(85, 59, 130, 246)); BoardCircleEraserTabButton.Opacity = 1; BoardCircleEraserTabButtonText.FontWeight = FontWeights.Bold; BoardCircleEraserTabButtonText.Margin = new Thickness(2, 0.5, 0, 0); BoardCircleEraserTabButtonText.FontSize = 9.5; BoardCircleEraserTabButtonIndicator.Visibility = Visibility.Visible; BoardRectangleEraserTabButton.Background = new SolidColorBrush(Colors.Transparent); BoardRectangleEraserTabButton.Opacity = 0.75; BoardRectangleEraserTabButtonText.FontWeight = FontWeights.Normal; BoardRectangleEraserTabButtonText.FontSize = 9; BoardRectangleEraserTabButtonText.Margin = new Thickness(2, 1, 0, 0); BoardRectangleEraserTabButtonIndicator.Visibility = Visibility.Collapsed; } else { RectangleEraserTabButton.Background = new SolidColorBrush(Color.FromArgb(85, 59, 130, 246)); RectangleEraserTabButton.Opacity = 1; RectangleEraserTabButtonText.FontWeight = FontWeights.Bold; RectangleEraserTabButtonText.Margin = new Thickness(2, 0.5, 0, 0); RectangleEraserTabButtonText.FontSize = 9.5; RectangleEraserTabButtonIndicator.Visibility = Visibility.Visible; CircleEraserTabButton.Background = new SolidColorBrush(Colors.Transparent); CircleEraserTabButton.Opacity = 0.75; CircleEraserTabButtonText.FontWeight = FontWeights.Normal; CircleEraserTabButtonText.FontSize = 9; CircleEraserTabButtonText.Margin = new Thickness(2, 1, 0, 0); CircleEraserTabButtonIndicator.Visibility = Visibility.Collapsed; BoardRectangleEraserTabButton.Background = new SolidColorBrush(Color.FromArgb(85, 59, 130, 246)); BoardRectangleEraserTabButton.Opacity = 1; BoardRectangleEraserTabButtonText.FontWeight = FontWeights.Bold; BoardRectangleEraserTabButtonText.Margin = new Thickness(2, 0.5, 0, 0); BoardRectangleEraserTabButtonText.FontSize = 9.5; BoardRectangleEraserTabButtonIndicator.Visibility = Visibility.Visible; BoardCircleEraserTabButton.Background = new SolidColorBrush(Colors.Transparent); BoardCircleEraserTabButton.Opacity = 0.75; BoardCircleEraserTabButtonText.FontWeight = FontWeights.Normal; BoardCircleEraserTabButtonText.FontSize = 9; BoardCircleEraserTabButtonText.Margin = new Thickness(2, 1, 0, 0); BoardCircleEraserTabButtonIndicator.Visibility = Visibility.Collapsed; } } /// /// 单次点名图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void SymbolIconRandOne_MouseUp(object sender, MouseButtonEventArgs e) { // 如果控件被隐藏,不处理事件 if (BoardSingleDrawToolBtn.Visibility != Visibility.Visible) return; LeftUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; RightUnFoldButtonQuickPanel.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); // 检查是否启用了外部点名功能 if (Settings.RandSettings.DirectCallCiRand) { try { string[] protocols; switch (Settings.RandSettings.ExternalCallerType) { case 0: // ClassIsland点名 protocols = ExternalCallerLauncher.GetProtocolsByType(0); break; case 1: // SecRandom点名 protocols = ExternalCallerLauncher.GetProtocolsByType(1); break; case 2: // NamePicker点名 protocols = ExternalCallerLauncher.GetProtocolsByType(2); break; default: protocols = ExternalCallerLauncher.GetProtocolsByType(0); break; } if (!ExternalCallerLauncher.TryLaunch(protocols, out Exception lastException)) { throw lastException ?? new InvalidOperationException("external caller protocols are unavailable"); } } catch (Exception ex) { MessageBox.Show("无法调用外部点名:" + ex.Message); // 调用失败时回退到相应的点名窗口 if (Settings.RandSettings.UseNewRollCallUI) { new NewStyleRollCallWindow(Settings, true).ShowDialog(); // 单次抽模式 } else { new RandWindow(Settings, true).ShowDialog(); } } } else { // 根据设置决定使用哪个点名窗口 if (Settings.RandSettings.UseNewRollCallUI) { // 使用新点名UI - 单次抽模式 new NewStyleRollCallWindow(Settings, true).ShowDialog(); } else { // 使用默认的随机点名窗口 new RandWindow(Settings, true).ShowDialog(); } } } /// /// 墨迹重播按钮点击事件处理 /// /// 发送者 /// 路由事件参数 private void GridInkReplayButton_MouseUp(object sender, MouseButtonEventArgs e) { //if (lastBorderMouseDownObject != sender) return; AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); CollapseBorderDrawShape(); InkCanvasForInkReplay.Visibility = Visibility.Visible; InkCanvasGridForInkReplay.Visibility = Visibility.Hidden; InkCanvasGridForInkReplay.IsHitTestVisible = false; FloatingbarUIForInkReplay.Visibility = Visibility.Hidden; FloatingbarUIForInkReplay.IsHitTestVisible = false; BlackboardUIGridForInkReplay.Visibility = Visibility.Hidden; BlackboardUIGridForInkReplay.IsHitTestVisible = false; AnimationsHelper.ShowWithFadeIn(BorderInkReplayToolBox); InkReplayPanelStatusText.Text = "正在重播墨迹..."; InkReplayPlayPauseBorder.Background = new SolidColorBrush(Colors.Transparent); InkReplayPlayButtonImage.Visibility = Visibility.Collapsed; InkReplayPauseButtonImage.Visibility = Visibility.Visible; isStopInkReplay = false; isPauseInkReplay = false; isRestartInkReplay = false; inkReplaySpeed = 1; InkCanvasForInkReplay.Strokes.Clear(); var strokes = inkCanvas.Strokes.Clone(); if (inkCanvas.GetSelectedStrokes().Count != 0) strokes = inkCanvas.GetSelectedStrokes().Clone(); int k = 1, i = 0; new Thread(() => { isRestartInkReplay = true; while (isRestartInkReplay) { isRestartInkReplay = false; Application.Current.Dispatcher.Invoke(() => { InkCanvasForInkReplay.Strokes.Clear(); }); foreach (var stroke in strokes) { if (isRestartInkReplay) break; var stylusPoints = new StylusPointCollection(); if (stroke.StylusPoints.Count == 629) //圆或椭圆 { Stroke s = null; foreach (var stylusPoint in stroke.StylusPoints) { if (isRestartInkReplay) break; while (isPauseInkReplay) { Thread.Sleep(10); } if (i++ >= 50) { i = 0; Thread.Sleep((int)(10 / inkReplaySpeed)); if (isStopInkReplay) return; } Application.Current.Dispatcher.Invoke(() => { try { InkCanvasForInkReplay.Strokes.Remove(s); } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex); } stylusPoints.Add(stylusPoint); s = new Stroke(stylusPoints.Clone()) { DrawingAttributes = stroke.DrawingAttributes }; InkCanvasForInkReplay.Strokes.Add(s); }); } } else { Stroke s = null; foreach (var stylusPoint in stroke.StylusPoints) { if (isRestartInkReplay) break; while (isPauseInkReplay) { Thread.Sleep(10); } if (i++ >= k) { i = 0; Thread.Sleep((int)(10 / inkReplaySpeed)); if (isStopInkReplay) return; } Application.Current.Dispatcher.Invoke(() => { try { InkCanvasForInkReplay.Strokes.Remove(s); } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex); } stylusPoints.Add(stylusPoint); s = new Stroke(stylusPoints.Clone()) { DrawingAttributes = stroke.DrawingAttributes }; InkCanvasForInkReplay.Strokes.Add(s); }); } } } } Thread.Sleep(100); Application.Current.Dispatcher.Invoke(() => { InkCanvasForInkReplay.Visibility = Visibility.Collapsed; InkCanvasGridForInkReplay.Visibility = Visibility.Visible; InkCanvasGridForInkReplay.IsHitTestVisible = true; AnimationsHelper.HideWithFadeOut(BorderInkReplayToolBox); FloatingbarUIForInkReplay.Visibility = Visibility.Visible; FloatingbarUIForInkReplay.IsHitTestVisible = true; BlackboardUIGridForInkReplay.Visibility = Visibility.Visible; BlackboardUIGridForInkReplay.IsHitTestVisible = true; inkCanvas.IsHitTestVisible = true; inkCanvas.IsManipulationEnabled = true; if (inkCanvas.EditingMode == InkCanvasEditingMode.None) { inkCanvas.EditingMode = InkCanvasEditingMode.Ink; } ResetTouchStates(); }); }).Start(); } /// /// 是否停止墨迹重播 /// private bool isStopInkReplay; /// /// 是否暂停墨迹重播 /// private bool isPauseInkReplay; /// /// 是否重新开始墨迹重播 /// private bool isRestartInkReplay; /// /// 墨迹重播速度 /// private double inkReplaySpeed = 1; /// /// 墨迹重播画布鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkCanvasForInkReplay_MouseDown(object sender, MouseButtonEventArgs e) { if (e.ClickCount == 2) { InkCanvasForInkReplay.Visibility = Visibility.Collapsed; InkCanvasGridForInkReplay.Visibility = Visibility.Visible; InkCanvasGridForInkReplay.IsHitTestVisible = true; FloatingbarUIForInkReplay.Visibility = Visibility.Visible; FloatingbarUIForInkReplay.IsHitTestVisible = true; BlackboardUIGridForInkReplay.Visibility = Visibility.Visible; BlackboardUIGridForInkReplay.IsHitTestVisible = true; AnimationsHelper.HideWithFadeOut(BorderInkReplayToolBox); isStopInkReplay = true; inkCanvas.IsHitTestVisible = true; inkCanvas.IsManipulationEnabled = true; if (inkCanvas.EditingMode == InkCanvasEditingMode.None) { inkCanvas.EditingMode = InkCanvasEditingMode.Ink; } ResetTouchStates(); } } /// /// 墨迹重播播放/暂停按钮鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayPlayPauseBorder_OnMouseDown(object sender, MouseButtonEventArgs e) { InkReplayPlayPauseBorder.Background = new SolidColorBrush(Color.FromArgb(34, 9, 9, 11)); } /// /// 墨迹重播播放/暂停按钮鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayPlayPauseBorder_OnMouseUp(object sender, MouseButtonEventArgs e) { InkReplayPlayPauseBorder.Background = new SolidColorBrush(Colors.Transparent); isPauseInkReplay = !isPauseInkReplay; InkReplayPanelStatusText.Text = isPauseInkReplay ? "已暂停!" : "正在重播墨迹..."; InkReplayPlayButtonImage.Visibility = isPauseInkReplay ? Visibility.Visible : Visibility.Collapsed; InkReplayPauseButtonImage.Visibility = !isPauseInkReplay ? Visibility.Visible : Visibility.Collapsed; } /// /// 墨迹重播停止按钮鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayStopButtonBorder_OnMouseDown(object sender, MouseButtonEventArgs e) { InkReplayStopButtonBorder.Background = new SolidColorBrush(Color.FromArgb(34, 9, 9, 11)); } /// /// 墨迹重播停止按钮鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayStopButtonBorder_OnMouseUp(object sender, MouseButtonEventArgs e) { InkReplayStopButtonBorder.Background = new SolidColorBrush(Colors.Transparent); InkCanvasForInkReplay.Visibility = Visibility.Collapsed; InkCanvasGridForInkReplay.Visibility = Visibility.Visible; InkCanvasGridForInkReplay.IsHitTestVisible = true; FloatingbarUIForInkReplay.Visibility = Visibility.Visible; FloatingbarUIForInkReplay.IsHitTestVisible = true; BlackboardUIGridForInkReplay.Visibility = Visibility.Visible; BlackboardUIGridForInkReplay.IsHitTestVisible = true; AnimationsHelper.HideWithFadeOut(BorderInkReplayToolBox); isStopInkReplay = true; } /// /// 墨迹重播重新开始按钮鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayReplayButtonBorder_OnMouseDown(object sender, MouseButtonEventArgs e) { InkReplayReplayButtonBorder.Background = new SolidColorBrush(Color.FromArgb(34, 9, 9, 11)); } /// /// 墨迹重播重新开始按钮鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplayReplayButtonBorder_OnMouseUp(object sender, MouseButtonEventArgs e) { InkReplayReplayButtonBorder.Background = new SolidColorBrush(Colors.Transparent); isRestartInkReplay = true; isPauseInkReplay = false; InkReplayPanelStatusText.Text = "正在重播墨迹..."; InkReplayPlayButtonImage.Visibility = Visibility.Collapsed; InkReplayPauseButtonImage.Visibility = Visibility.Visible; } /// /// 墨迹重播速度按钮鼠标按下事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplaySpeedButtonBorder_OnMouseDown(object sender, MouseButtonEventArgs e) { InkReplaySpeedButtonBorder.Background = new SolidColorBrush(Color.FromArgb(34, 9, 9, 11)); } /// /// 墨迹重播速度按钮鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void InkReplaySpeedButtonBorder_OnMouseUp(object sender, MouseButtonEventArgs e) { InkReplaySpeedButtonBorder.Background = new SolidColorBrush(Colors.Transparent); inkReplaySpeed = inkReplaySpeed == 0.5 ? 1 : inkReplaySpeed == 1 ? 2 : inkReplaySpeed == 2 ? 4 : inkReplaySpeed == 4 ? 8 : 0.5; InkReplaySpeedTextBlock.Text = inkReplaySpeed + "x"; } /// /// 工具图标点击事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void SymbolIconTools_MouseUp(object sender, MouseButtonEventArgs e) { if (BorderTools.Visibility == Visibility.Visible) { AnimationsHelper.HideWithSlideAndFade(BorderTools); AnimationsHelper.HideWithSlideAndFade(BoardBorderTools); } else { HideSubPanels(); UpdateBorderToolsPosition(); AnimationsHelper.ShowWithSlideFromBottomAndFade(BorderTools); AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardBorderTools); } } /// /// 浮动工具栏边距动画是否正在运行 /// private bool isViewboxFloatingBarMarginAnimationRunning; /// /// 浮动工具栏边距动画处理 /// /// 边缘边距 /// 是否考虑任务栏高度计算位置 public async void ViewboxFloatingBarMarginAnimation(int MarginFromEdge, bool PosXCaculatedWithTaskbarHeight = false) { // 新增:在白板模式下不执行浮动栏动画 if (currentMode == 1) { return; } if (MarginFromEdge == 60) MarginFromEdge = 55; await Dispatcher.InvokeAsync(() => { if (!Topmost) MarginFromEdge = -60; else ViewboxFloatingBar.Visibility = Visibility.Visible; isViewboxFloatingBarMarginAnimationRunning = true; double dpiScaleX = 1, dpiScaleY = 1; var source = PresentationSource.FromVisual(this); if (source != null) { dpiScaleX = source.CompositionTarget.TransformToDevice.M11; dpiScaleY = source.CompositionTarget.TransformToDevice.M22; } var windowHandle = new WindowInteropHelper(this).Handle; var screen = Screen.FromHandle(windowHandle); double screenWidth = screen.Bounds.Width / dpiScaleX, screenHeight = screen.Bounds.Height / dpiScaleY; // 仅计算Windows任务栏高度,不考虑其他程序对工作区的影响 var toolbarHeight = ForegroundWindowInfo.GetTaskbarHeight(screen, dpiScaleY); // 使用更可靠的方法获取浮动栏宽度 double baseWidth = ViewboxFloatingBar.ActualWidth; // 如果ActualWidth为0,尝试使用DesiredSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.DesiredSize.Width; } // 如果仍然为0,使用RenderSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.RenderSize.Width; } // 如果所有方法都失败,使用一个基于内容的估算值 if (baseWidth <= 0) { // 根据浮动栏内容估算宽度 baseWidth = 200; // 最小宽度 LogHelper.WriteLogToFile($"浮动栏宽度无法获取,使用估算值: {baseWidth}"); } double floatingBarWidth = baseWidth * ViewboxFloatingBarScaleTransform.ScaleX; // 如果快捷调色盘显示,确保有足够空间 if ((QuickColorPalettePanel != null && QuickColorPalettePanel.Visibility == Visibility.Visible) || (QuickColorPaletteSingleRowPanel != null && QuickColorPaletteSingleRowPanel.Visibility == Visibility.Visible)) { // 根据显示模式调整宽度 if (Settings.Appearance.QuickColorPaletteDisplayMode == 0) { // 单行显示模式,自适应宽度,但需要足够空间显示6个颜色 floatingBarWidth = Math.Max(floatingBarWidth, 120 * ViewboxFloatingBarScaleTransform.ScaleX); } else { // 双行显示模式,宽度较大 floatingBarWidth = Math.Max(floatingBarWidth, 68 * ViewboxFloatingBarScaleTransform.ScaleX); } } pos.X = (screenWidth - floatingBarWidth) / 2; if (!PosXCaculatedWithTaskbarHeight) { // 如果任务栏高度为0(隐藏状态),则使用固定边距 if (toolbarHeight == 0) { pos.Y = screenHeight - MarginFromEdge * ViewboxFloatingBarScaleTransform.ScaleY; } else { pos.Y = screenHeight - MarginFromEdge * ViewboxFloatingBarScaleTransform.ScaleY; } } else if (PosXCaculatedWithTaskbarHeight) { // 如果任务栏高度为0(隐藏状态),则使用固定高度 if (toolbarHeight == 0) { pos.Y = screenHeight - ViewboxFloatingBar.ActualHeight * ViewboxFloatingBarScaleTransform.ScaleY - 3 * ViewboxFloatingBarScaleTransform.ScaleY; } else { pos.Y = screenHeight - ViewboxFloatingBar.ActualHeight * ViewboxFloatingBarScaleTransform.ScaleY - toolbarHeight - ViewboxFloatingBarScaleTransform.ScaleY * 3; } } if (MarginFromEdge != -60) { if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { if (pointPPT.X != -1 || pointPPT.Y != -1) { if (Math.Abs(pointPPT.Y - pos.Y) > 50) pos = pointPPT; else pointPPT = pos; } } else { if (pointDesktop.X != -1 || pointDesktop.Y != -1) { if (Math.Abs(pointDesktop.Y - pos.Y) > 50) pos = pointDesktop; else pointDesktop = pos; } } } var marginAnimation = new ThicknessAnimation { Duration = TimeSpan.FromSeconds(0.35), From = ViewboxFloatingBar.Margin, To = new Thickness(pos.X, pos.Y, 0, -20), EasingFunction = new CircleEase() }; ViewboxFloatingBar.BeginAnimation(MarginProperty, marginAnimation); }); await Task.Delay(200); await Dispatcher.InvokeAsync(() => { ViewboxFloatingBar.Margin = new Thickness(pos.X, pos.Y, -2000, -200); if (!Topmost) ViewboxFloatingBar.Visibility = Visibility.Hidden; }); } /// /// 桌面模式下的浮动工具栏边距动画处理 /// public async void PureViewboxFloatingBarMarginAnimationInDesktopMode() { // 在白板模式下不执行浮动栏动画 if (currentMode == 1) { return; } await Dispatcher.InvokeAsync(() => { ViewboxFloatingBar.Visibility = Visibility.Visible; isViewboxFloatingBarMarginAnimationRunning = true; double dpiScaleX = 1, dpiScaleY = 1; var source = PresentationSource.FromVisual(this); if (source != null) { dpiScaleX = source.CompositionTarget.TransformToDevice.M11; dpiScaleY = source.CompositionTarget.TransformToDevice.M22; } var windowHandle = new WindowInteropHelper(this).Handle; var screen = Screen.FromHandle(windowHandle); double screenWidth = screen.Bounds.Width / dpiScaleX, screenHeight = screen.Bounds.Height / dpiScaleY; // 仅计算Windows任务栏高度,不考虑其他程序对工作区的影响 var toolbarHeight = ForegroundWindowInfo.GetTaskbarHeight(screen, dpiScaleY); double baseWidth = ViewboxFloatingBar.ActualWidth; // 如果ActualWidth为0,尝试使用DesiredSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.DesiredSize.Width; } // 如果仍然为0,使用RenderSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.RenderSize.Width; } // 如果所有方法都失败,使用一个基于内容的估算值 if (baseWidth <= 0) { // 根据浮动栏内容估算宽度 baseWidth = 200; // 最小宽度 LogHelper.WriteLogToFile($"浮动栏宽度无法获取,使用估算值: {baseWidth}"); } double floatingBarWidth = baseWidth * ViewboxFloatingBarScaleTransform.ScaleX; // 如果快捷调色盘显示,确保有足够空间 if ((QuickColorPalettePanel != null && QuickColorPalettePanel.Visibility == Visibility.Visible) || (QuickColorPaletteSingleRowPanel != null && QuickColorPaletteSingleRowPanel.Visibility == Visibility.Visible)) { // 根据显示模式调整宽度 if (Settings.Appearance.QuickColorPaletteDisplayMode == 0) { // 单行显示模式,自适应宽度,但需要足够空间显示6个颜色 floatingBarWidth = Math.Max(floatingBarWidth, 120 * ViewboxFloatingBarScaleTransform.ScaleX); } else { // 双行显示模式,宽度较大 floatingBarWidth = Math.Max(floatingBarWidth, 68 * ViewboxFloatingBarScaleTransform.ScaleX); } } pos.X = (screenWidth - floatingBarWidth) / 2; // 如果任务栏高度为0,则使用固定边距 if (toolbarHeight == 0) { pos.Y = screenHeight - ViewboxFloatingBar.ActualHeight * ViewboxFloatingBarScaleTransform.ScaleY - 3 * ViewboxFloatingBarScaleTransform.ScaleY; LogHelper.WriteLogToFile($"任务栏隐藏,使用固定高度: {ViewboxFloatingBar.ActualHeight}"); } else { pos.Y = screenHeight - ViewboxFloatingBar.ActualHeight * ViewboxFloatingBarScaleTransform.ScaleY - toolbarHeight - ViewboxFloatingBarScaleTransform.ScaleY * 3; } if (pointDesktop.X != -1 || pointDesktop.Y != -1) pointDesktop = pos; var marginAnimation = new ThicknessAnimation { Duration = TimeSpan.FromSeconds(0.35), From = ViewboxFloatingBar.Margin, To = new Thickness(pos.X, pos.Y, 0, -20), EasingFunction = new CircleEase() }; ViewboxFloatingBar.BeginAnimation(MarginProperty, marginAnimation); }); await Task.Delay(349); await Dispatcher.InvokeAsync(() => { ViewboxFloatingBar.Margin = new Thickness(pos.X, pos.Y, -2000, -200); }); } /// /// PPT模式下的浮动工具栏边距动画处理 /// /// 是否为重试操作 public async void PureViewboxFloatingBarMarginAnimationInPPTMode(bool isRetry = false) { // 新增:在白板模式下不执行浮动栏动画 if (currentMode == 1) { return; } await Dispatcher.InvokeAsync(() => { ViewboxFloatingBar.Visibility = Visibility.Visible; isViewboxFloatingBarMarginAnimationRunning = true; double dpiScaleX = 1, dpiScaleY = 1; var source = PresentationSource.FromVisual(this); if (source != null) { dpiScaleX = source.CompositionTarget.TransformToDevice.M11; dpiScaleY = source.CompositionTarget.TransformToDevice.M22; } var windowHandle = new WindowInteropHelper(this).Handle; var screen = Screen.FromHandle(windowHandle); double screenWidth = screen.Bounds.Width / dpiScaleX, screenHeight = screen.Bounds.Height / dpiScaleY; // 仅计算Windows任务栏高度,不考虑其他程序对工作区的影响 var toolbarHeight = ForegroundWindowInfo.GetTaskbarHeight(screen, dpiScaleY); // 计算浮动栏位置,考虑快捷调色盘的显示状态 // 使用更可靠的方法获取浮动栏宽度 double baseWidth = ViewboxFloatingBar.ActualWidth; // 如果ActualWidth为0,尝试使用DesiredSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.DesiredSize.Width; } // 如果仍然为0,使用RenderSize if (baseWidth <= 0) { baseWidth = ViewboxFloatingBar.RenderSize.Width; } // 如果所有方法都失败,使用一个基于内容的估算值 if (baseWidth <= 0) { // 根据浮动栏内容估算宽度 baseWidth = 200; // 最小宽度 LogHelper.WriteLogToFile($"浮动栏宽度无法获取,使用估算值: {baseWidth}"); } double floatingBarWidth = baseWidth * ViewboxFloatingBarScaleTransform.ScaleX; // 如果快捷调色盘显示,确保有足够空间 if ((QuickColorPalettePanel != null && QuickColorPalettePanel.Visibility == Visibility.Visible) || (QuickColorPaletteSingleRowPanel != null && QuickColorPaletteSingleRowPanel.Visibility == Visibility.Visible)) { // 根据显示模式调整宽度 if (Settings.Appearance.QuickColorPaletteDisplayMode == 0) { // 单行显示模式,自适应宽度,但需要足够空间显示6个颜色 floatingBarWidth = Math.Max(floatingBarWidth, 120 * ViewboxFloatingBarScaleTransform.ScaleX); } else { // 双行显示模式,宽度较大 floatingBarWidth = Math.Max(floatingBarWidth, 68 * ViewboxFloatingBarScaleTransform.ScaleX); } } pos.X = (screenWidth - floatingBarWidth) / 2; pos.Y = screenHeight - 55 * ViewboxFloatingBarScaleTransform.ScaleY; if (pointPPT.X != -1 || pointPPT.Y != -1) { pointPPT = pos; } var marginAnimation = new ThicknessAnimation { Duration = TimeSpan.FromSeconds(0.35), From = ViewboxFloatingBar.Margin, To = new Thickness(pos.X, pos.Y, 0, -20), EasingFunction = new CircleEase() }; ViewboxFloatingBar.BeginAnimation(MarginProperty, marginAnimation); }); await Task.Delay(349); await Dispatcher.InvokeAsync(() => { ViewboxFloatingBar.Margin = new Thickness(pos.X, pos.Y, -2000, -200); }); if (Settings.ModeSettings.IsPPTOnlyMode && !isRetry) { await Task.Delay(2000); // 等待动画完成后再检查 bool isFloatingBarVisible = false; await Dispatcher.InvokeAsync(() => { // 检查浮动栏是否真的显示了 isFloatingBarVisible = ViewboxFloatingBar.Visibility == Visibility.Visible && ViewboxFloatingBar.Margin.Left >= 0 && ViewboxFloatingBar.Margin.Top >= 0; }); if (!isFloatingBarVisible) { PureViewboxFloatingBarMarginAnimationInPPTMode(true); } } } /// /// 光标图标点击事件处理 /// /// 发送者 /// 路由事件参数 internal async void CursorIcon_Click(object sender, MouseButtonEventArgs e) { if (lastBorderMouseDownObject is Panel panel) panel.Background = new SolidColorBrush(Colors.Transparent); // 禁用高级橡皮擦系统 DisableEraserOverlay(); SetCurrentToolMode(InkCanvasEditingMode.None); UpdateCurrentToolMode("cursor"); SetFloatingBarHighlightPosition("cursor"); // 切换前自动截图保存墨迹 if (inkCanvas.Strokes.Count > 0 && inkCanvas.Strokes.Count > Settings.Automation.MinimumAutomationStrokeNumber) { if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) { var currentSlide = _pptManager?.GetCurrentSlideNumber() ?? 0; var presentationName = _pptManager?.GetPresentationName() ?? ""; CaptureAndEnqueueScreenshotSave(true, $"{presentationName}/{currentSlide}_{DateTime.Now:HH-mm-ss}"); } else CaptureAndEnqueueScreenshotSave(true); } if (BtnPPTSlideShowEnd.Visibility != Visibility.Visible) { if (Settings.Canvas.HideStrokeWhenSelecting) { inkCanvas.Visibility = Visibility.Collapsed; } else { inkCanvas.IsHitTestVisible = false; inkCanvas.Visibility = Visibility.Visible; } } else { if (Settings.PowerPointSettings.IsShowStrokeOnSelectInPowerPoint) { inkCanvas.Visibility = Visibility.Visible; inkCanvas.IsHitTestVisible = true; } else { if (Settings.Canvas.HideStrokeWhenSelecting) { inkCanvas.Visibility = Visibility.Collapsed; } else { inkCanvas.IsHitTestVisible = false; inkCanvas.Visibility = Visibility.Visible; } } } GridTransparencyFakeBackground.Opacity = 0; GridTransparencyFakeBackground.Background = Brushes.Transparent; GridBackgroundCoverHolder.Visibility = Visibility.Collapsed; // 点击鼠标按钮退出批注模式时的全屏还原 RestoreFullScreenOnExitAnnotationMode(); inkCanvas.Select(new StrokeCollection()); GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; if (currentMode != 0) { SaveStrokes(); RestoreStrokes(true); } if (BtnSwitchTheme.Content.ToString() == "浅色") BtnSwitch.Content = "黑板"; else BtnSwitch.Content = "白板"; StackPanelPPTButtons.Visibility = Visibility.Visible; BtnHideInkCanvas.Content = "显示\n画板"; CheckEnableTwoFingerGestureBtnVisibility(false); StackPanelCanvasControls.Visibility = Visibility.Collapsed; // 在鼠标模式下隐藏快捷调色盘 if (QuickColorPalettePanel != null) { QuickColorPalettePanel.Visibility = Visibility.Collapsed; } if (QuickColorPaletteSingleRowPanel != null) { QuickColorPaletteSingleRowPanel.Visibility = Visibility.Collapsed; } if (!isFloatingBarFolded) { HideSubPanels("cursor", true); await Task.Delay(50); if (BtnPPTSlideShowEnd.Visibility == Visibility.Visible) ViewboxFloatingBarMarginAnimation(60); else ViewboxFloatingBarMarginAnimation(100, true); } } /// /// 画笔图标点击事件处理,用于切换到批注模式或显示画笔调色盘 /// /// 发送者 /// 路由事件参数 internal void PenIcon_Click(object sender, MouseButtonEventArgs e) { if (lastBorderMouseDownObject is Panel panel) panel.Background = new SolidColorBrush(Colors.Transparent); // 如果当前有选中的图片元素,先取消选中 if (currentSelectedElement != null) { UnselectElement(currentSelectedElement); currentSelectedElement = null; } // 禁用高级橡皮擦系统 DisableEraserOverlay(); // 停止橡皮擦自动切换计时器(如果正在运行) StopEraserAutoSwitchBackTimer(); SetFloatingBarHighlightPosition("pen"); // 记录当前是否已经是批注模式且是否为高光显示模式 bool wasInInkMode = inkCanvas.EditingMode == InkCanvasEditingMode.Ink; bool wasHighlighter = drawingAttributes.IsHighlighter; if (drawingShapeMode != 0 && !isLongPressSelected) { return; } if (Pen_Icon.Background == null || StackPanelCanvasControls.Visibility == Visibility.Collapsed) { if (isLongPressSelected) { drawingShapeMode = 0; isLongPressSelected = false; } // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.Ink); // 更新模式缓存 UpdateCurrentToolMode("pen"); GridTransparencyFakeBackground.Opacity = 1; GridTransparencyFakeBackground.Background = new SolidColorBrush(StringToColor("#01FFFFFF")); inkCanvas.IsHitTestVisible = true; inkCanvas.Visibility = Visibility.Visible; GridBackgroundCoverHolder.Visibility = Visibility.Visible; GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; /*if (forceEraser && currentMode == 0) BtnColorRed_Click(sender, null);*/ if (GridBackgroundCover.Visibility == Visibility.Collapsed) { if (BtnSwitchTheme.Content.ToString() == "浅色") BtnSwitch.Content = "黑板"; else BtnSwitch.Content = "白板"; StackPanelPPTButtons.Visibility = Visibility.Visible; } else { BtnSwitch.Content = "屏幕"; StackPanelPPTButtons.Visibility = Visibility.Collapsed; } BtnHideInkCanvas.Content = "隐藏\n画板"; // 进入批注模式时的全屏处理(仅当未应用过全屏处理时) if (Settings.Advanced.IsEnableAvoidFullScreenHelper && !isFullScreenApplied) { // 设置为画板模式,允许全屏操作 AvoidFullScreenHelper.SetBoardMode(true); Dispatcher.BeginInvoke(new Action(() => { MainWindow.MoveWindow(new WindowInteropHelper(this).Handle, 0, 0, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height, true); }), DispatcherPriority.ApplicationIdle); isFullScreenApplied = true; // 标记已应用全屏处理 } StackPanelCanvasControls.Visibility = Visibility.Visible; //AnimationsHelper.ShowWithSlideFromLeftAndFade(StackPanelCanvasControls); CheckEnableTwoFingerGestureBtnVisibility(true); // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.Ink); // 更新模式缓存 UpdateCurrentToolMode("pen"); // 在批注模式下显示快捷调色盘(如果设置中启用了) if (Settings.Appearance.IsShowQuickColorPalette && QuickColorPalettePanel != null && QuickColorPaletteSingleRowPanel != null) { // 根据显示模式选择显示哪个面板 if (Settings.Appearance.QuickColorPaletteDisplayMode == 0) { // 单行显示模式 QuickColorPalettePanel.Visibility = Visibility.Collapsed; QuickColorPaletteSingleRowPanel.Visibility = Visibility.Visible; } else { // 双行显示模式 QuickColorPalettePanel.Visibility = Visibility.Visible; QuickColorPaletteSingleRowPanel.Visibility = Visibility.Collapsed; } } forceEraser = false; forcePointEraser = false; drawingShapeMode = 0; // 保持之前的笔类型状态,而不是强制重置 if (!wasHighlighter) { penType = 0; drawingAttributes.IsHighlighter = false; drawingAttributes.StylusTip = StylusTip.Ellipse; } // 如果之前是荧光笔模式,则保持荧光笔属性 else if (penType == 1) { drawingAttributes.IsHighlighter = true; drawingAttributes.StylusTip = StylusTip.Rectangle; drawingAttributes.Width = Settings.Canvas.HighlighterWidth / 2; drawingAttributes.Height = Settings.Canvas.HighlighterWidth; } ColorSwitchCheck(); HideSubPanels("pen", true); } else { if (wasInInkMode) { if (forceEraser) { // 从橡皮擦模式切换过来,保持之前的笔类型状态 forceEraser = false; forcePointEraser = false; drawingShapeMode = 0; // 保持之前的笔类型状态,而不是强制重置 if (!wasHighlighter) { penType = 0; drawingAttributes.IsHighlighter = false; drawingAttributes.StylusTip = StylusTip.Ellipse; } // 如果之前是荧光笔模式,则保持荧光笔属性 else if (penType == 1) { drawingAttributes.IsHighlighter = true; drawingAttributes.StylusTip = StylusTip.Rectangle; drawingAttributes.Width = Settings.Canvas.HighlighterWidth / 2; drawingAttributes.Height = Settings.Canvas.HighlighterWidth; } // 在非白板模式下,从线擦切换到批注时不直接弹出子面板 if (currentMode != 1) { HideSubPanels("pen", true); return; } } if (PenPalette.Visibility == Visibility.Visible) { AnimationsHelper.HideWithSlideAndFade(PenPalette); AnimationsHelper.HideWithSlideAndFade(BoardPenPalette); } else { HideSubPanels(); UpdatePenPalettePosition(); AnimationsHelper.ShowWithSlideFromBottomAndFade(PenPalette); AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardPenPalette); } } else { // 切换到批注模式时,确保保存当前图片信息 if (currentMode != 0) { SaveStrokes(); } // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.Ink); // 更新模式缓存 UpdateCurrentToolMode("pen"); forceEraser = false; forcePointEraser = false; drawingShapeMode = 0; // 保持之前的笔类型状态,而不是强制重置 if (!wasHighlighter) { penType = 0; drawingAttributes.IsHighlighter = false; drawingAttributes.StylusTip = StylusTip.Ellipse; } // 如果之前是荧光笔模式,则保持荧光笔属性 else if (penType == 1) { drawingAttributes.IsHighlighter = true; drawingAttributes.StylusTip = StylusTip.Rectangle; drawingAttributes.Width = Settings.Canvas.HighlighterWidth / 2; drawingAttributes.Height = Settings.Canvas.HighlighterWidth; } ColorSwitchCheck(); HideSubPanels("pen", true); } } forceEraser = false; forcePointEraser = false; drawingShapeMode = 0; } /// /// 颜色主题切换鼠标释放事件处理 /// /// 发送者 /// 路由事件参数 private void ColorThemeSwitch_MouseUp(object sender, RoutedEventArgs e) { isUselightThemeColor = !isUselightThemeColor; if (currentMode == 0) isDesktopUselightThemeColor = isUselightThemeColor; CheckColorTheme(); } /// /// 橡皮擦图标点击事件处理,用于切换到橡皮擦模式或显示橡皮擦尺寸面板 /// /// 发送者 /// 路由事件参数 internal void EraserIcon_Click(object sender, MouseButtonEventArgs e) { bool isAlreadyEraser = inkCanvas.EditingMode == InkCanvasEditingMode.EraseByPoint; forceEraser = false; forcePointEraser = true; drawingShapeMode = 0; // 切换到橡皮擦模式时,确保保存当前图片信息 if (!isAlreadyEraser && currentMode != 0) { SaveStrokes(); } if (!isAlreadyEraser) { ResetTouchStates(); } // 启用新的高级橡皮擦系统 EnableEraserOverlay(); // 使用新的高级橡皮擦系统 // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.EraseByPoint); // 更新模式缓存 UpdateCurrentToolMode("eraser"); ApplyAdvancedEraserShape(); // 使用新的橡皮擦形状应用方法 SetCursorBasedOnEditingMode(inkCanvas); HideSubPanels("eraser"); // 高亮橡皮按钮 Trace.WriteLine($"Eraser: Eraser button clicked, current size: {eraserWidth}, circle: {isEraserCircleShape}"); // 如果启用了橡皮擦自动切换功能,停止之前的计时器(如果正在运行) if (Settings.Canvas.EnableEraserAutoSwitchBack) { StopEraserAutoSwitchBackTimer(); } if (isAlreadyEraser) { // 已是橡皮状态,再次点击才弹出/收起面板 if (EraserSizePanel.Visibility == Visibility.Collapsed) { UpdateEraserSizePanelPosition(); AnimationsHelper.ShowWithSlideFromBottomAndFade(EraserSizePanel); if (BoardEraserSizePanel != null) AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardEraserSizePanel); } else { AnimationsHelper.HideWithSlideAndFade(EraserSizePanel); if (BoardEraserSizePanel != null) AnimationsHelper.HideWithSlideAndFade(BoardEraserSizePanel); } } } /// /// 白板模式下的橡皮擦图标点击事件处理 /// /// 发送者 /// 路由事件参数 private void BoardEraserIcon_Click(object sender, RoutedEventArgs e) { bool isAlreadyEraser = inkCanvas.EditingMode == InkCanvasEditingMode.EraseByPoint; forceEraser = false; forcePointEraser = true; drawingShapeMode = 0; // 启用新的高级橡皮擦系统 EnableEraserOverlay(); // 使用新的高级橡皮擦系统 // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.EraseByPoint); // 更新模式缓存 UpdateCurrentToolMode("eraser"); ApplyAdvancedEraserShape(); // 使用新的橡皮擦形状应用方法 SetCursorBasedOnEditingMode(inkCanvas); HideSubPanels("eraser"); // 高亮橡皮按钮 // 如果启用了橡皮擦自动切换功能,停止之前的计时器(如果正在运行) if (Settings.Canvas.EnableEraserAutoSwitchBack) { StopEraserAutoSwitchBackTimer(); } if (isAlreadyEraser) { // 已是橡皮状态,再次点击才弹出/收起面板 if (BoardEraserSizePanel != null && BoardEraserSizePanel.Visibility == Visibility.Collapsed) { UpdateEraserSizePanelPosition(); AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardEraserSizePanel); AnimationsHelper.ShowWithSlideFromBottomAndFade(EraserSizePanel); } else { if (BoardEraserSizePanel != null) AnimationsHelper.HideWithSlideAndFade(BoardEraserSizePanel); AnimationsHelper.HideWithSlideAndFade(EraserSizePanel); } } } /// /// 墨迹擦除图标点击事件处理,用于切换到按笔画擦除模式 /// /// 发送者 /// 路由事件参数 private void EraserIconByStrokes_Click(object sender, MouseButtonEventArgs e) { // 禁用高级橡皮擦系统 DisableEraserOverlay(); forceEraser = true; forcePointEraser = false; inkCanvas.EraserShape = new EllipseStylusShape(5, 5); // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.EraseByStroke); // 更新模式缓存 UpdateCurrentToolMode("eraserByStrokes"); drawingShapeMode = 0; // 这样从线擦切换回批注时,可以恢复之前的荧光笔状态 // penType 和 drawingAttributes 的状态将在 PenIcon_Click 中根据 wasHighlighter 来恢复 inkCanvas_EditingModeChanged(inkCanvas, null); CancelSingleFingerDragMode(); HideSubPanels("eraserByStrokes"); } /// /// 光标删除图标点击事件处理,用于删除选中内容并切换到光标模式 /// /// 发送者 /// 路由事件参数 private void CursorWithDelIcon_Click(object sender, MouseButtonEventArgs e) { SymbolIconDelete_MouseUp(sender, null); CursorIcon_Click(null, null); } /// /// 将当前绘笔颜色设置为白色并安排在短时间后自动恢复到之前的笔刷。 /// private void QuickColorWhite_Click(object sender, RoutedEventArgs e) { SetQuickColor(Colors.White); ScheduleBrushAutoRestore(); } /// /// 将快速颜色设置为橙色,并安排稍后自动恢复到先前的画笔颜色。 /// private void QuickColorOrange_Click(object sender, RoutedEventArgs e) { SetQuickColor(Color.FromRgb(251, 150, 80)); // 橙色 ScheduleBrushAutoRestore(); } /// /// 将画笔颜色切换为黄色并安排自动恢复为先前的画笔设置。 /// private void QuickColorYellow_Click(object sender, RoutedEventArgs e) { SetQuickColor(Colors.Yellow); ScheduleBrushAutoRestore(); } /// /// 将快速颜色设置为黑色并安排在稍后自动恢复为先前的画笔颜色。 /// private void QuickColorBlack_Click(object sender, RoutedEventArgs e) { SetQuickColor(Colors.Black); ScheduleBrushAutoRestore(); } /// /// 将当前画笔颜色设置为蓝色并安排在一段时间后自动恢复到之前的画笔颜色。 /// private void QuickColorBlue_Click(object sender, RoutedEventArgs e) { SetQuickColor(Color.FromRgb(37, 99, 235)); // 蓝色 ScheduleBrushAutoRestore(); } /// /// 将快速颜色切换为红色,并安排稍后自动恢复为先前的画笔颜色。 /// private void QuickColorRed_Click(object sender, RoutedEventArgs e) { SetQuickColor(Colors.Red); ScheduleBrushAutoRestore(); } /// /// 将快速颜色切换为绿色并安排在一段时间后自动恢复先前画笔颜色。 /// private void QuickColorGreen_Click(object sender, RoutedEventArgs e) { SetQuickColor(Color.FromRgb(22, 163, 74)); ScheduleBrushAutoRestore(); } /// /// 将当前画笔颜色切换为紫色快捷色并安排自动恢复先前画笔设置。 /// private void QuickColorPurple_Click(object sender, RoutedEventArgs e) { SetQuickColor(Color.FromRgb(147, 51, 234)); ScheduleBrushAutoRestore(); } /// /// 设置并应用快速颜色到当前画笔与相关状态,包括必要时切换到批注模式、更新荧光笔属性与颜色索引、记录桌面/白板的最近颜色,以及刷新调色盘指示器和颜色显示。 /// /// 要应用的颜色。 /// /// 此方法会: /// - 在非批注模式时切换到绘制(Ink)模式; /// - 将指定颜色应用到绘图属性和 InkCanvas 的默认绘图属性; /// - 在荧光笔模式下更新荧光笔的内部颜色索引与绘图属性(宽度、笔尖形状、IsHighlighter 等); /// - 根据当前模式(桌面或白板)记录最近使用的颜色索引; /// - 更新快速调色盘的选中指示器并刷新颜色显示状态。 /// private void SetQuickColor(Color color) { // 确保当前处于批注模式 if (inkCanvas.EditingMode != InkCanvasEditingMode.Ink) { PenIcon_Click(null, null); } // 设置画笔颜色 drawingAttributes.Color = color; inkCanvas.DefaultDrawingAttributes.Color = color; // 如果当前是荧光笔模式,同时更新荧光笔颜色和属性 if (penType == 1) { // 根据颜色设置对应的荧光笔颜色索引 if (color == Colors.White || IsColorSimilar(color, Color.FromRgb(250, 250, 250), 10)) { highlighterColor = 101; // 白色荧光笔 } else if (color == Colors.Black) { highlighterColor = 100; // 黑色荧光笔 } else if (color == Colors.Yellow || IsColorSimilar(color, Color.FromRgb(234, 179, 8)) || IsColorSimilar(color, Color.FromRgb(250, 204, 21)) || IsColorSimilar(color, Color.FromRgb(253, 224, 71))) { highlighterColor = 103; // 黄色荧光笔 } else if (color == Color.FromRgb(255, 165, 0) || color == Color.FromRgb(251, 150, 80) || IsColorSimilar(color, Color.FromRgb(249, 115, 22), 20) || IsColorSimilar(color, Color.FromRgb(234, 88, 12), 20) || IsColorSimilar(color, Color.FromRgb(251, 146, 60), 20) || IsColorSimilar(color, Color.FromRgb(253, 126, 20), 20)) { highlighterColor = 109; // 橙色荧光笔 } else if (color == Color.FromRgb(37, 99, 235)) { highlighterColor = 106; // 蓝色荧光笔 } else if (color == Colors.Red || IsColorSimilar(color, Color.FromRgb(220, 38, 38)) || IsColorSimilar(color, Color.FromRgb(239, 68, 68))) { highlighterColor = 102; // 红色荧光笔 } else if (color == Colors.Green || IsColorSimilar(color, Color.FromRgb(22, 163, 74))) { highlighterColor = 104; // 绿色荧光笔 } else if (color == Color.FromRgb(147, 51, 234)) { highlighterColor = 107; // 紫色荧光笔 } // 确保荧光笔属性正确设置 drawingAttributes.Width = Settings.Canvas.HighlighterWidth / 2; drawingAttributes.Height = Settings.Canvas.HighlighterWidth; drawingAttributes.StylusTip = StylusTip.Rectangle; drawingAttributes.IsHighlighter = true; inkCanvas.DefaultDrawingAttributes.Width = Settings.Canvas.HighlighterWidth / 2; inkCanvas.DefaultDrawingAttributes.Height = Settings.Canvas.HighlighterWidth; inkCanvas.DefaultDrawingAttributes.StylusTip = StylusTip.Rectangle; inkCanvas.DefaultDrawingAttributes.IsHighlighter = true; // 确保荧光笔颜色索引正确更新 inkCanvas.DefaultDrawingAttributes.Color = drawingAttributes.Color; } // 更新颜色状态 if (currentMode == 0) { // 桌面模式 if (color == Colors.White) lastDesktopInkColor = 5; else if (color == Color.FromRgb(251, 150, 80)) lastDesktopInkColor = 8; // 橙色 else if (color == Colors.Yellow) lastDesktopInkColor = 4; else if (color == Colors.Black) lastDesktopInkColor = 0; else if (color == Color.FromRgb(37, 99, 235)) lastDesktopInkColor = 3; // 蓝色 else if (color == Colors.Red) lastDesktopInkColor = 1; else if (color == Colors.Green || color == Color.FromRgb(22, 163, 74)) lastDesktopInkColor = 2; else if (color == Color.FromRgb(147, 51, 234)) lastDesktopInkColor = 6; // 紫色 } else { // 白板模式 if (color == Colors.White) lastBoardInkColor = 5; else if (color == Color.FromRgb(251, 150, 80)) lastBoardInkColor = 8; // 橙色 else if (color == Colors.Yellow) lastBoardInkColor = 4; else if (color == Colors.Black) lastBoardInkColor = 0; else if (color == Color.FromRgb(37, 99, 235)) lastBoardInkColor = 3; // 蓝色 else if (color == Colors.Red) lastBoardInkColor = 1; else if (color == Colors.Green || color == Color.FromRgb(22, 163, 74)) lastBoardInkColor = 2; else if (color == Color.FromRgb(147, 51, 234)) lastBoardInkColor = 6; // 紫色 } // 更新快捷调色盘选择指示器 UpdateQuickColorPaletteIndicator(color); // 更新颜色显示 ColorSwitchCheck(); // 如果当前是荧光笔模式,调用ColorSwitchCheck确保颜色索引正确更新 if (penType == 1) { ColorSwitchCheck(); } } /// /// 更新快速调色盘的选中指示器,根据当前选中的颜色显示对应的勾选图标 /// /// 当前选中的颜色 private void UpdateQuickColorPaletteIndicator(Color selectedColor) { // 隐藏所有check图标(双行显示) QuickColorWhite.IsChecked = false; QuickColorOrange.IsChecked = false; QuickColorYellow.IsChecked = false; QuickColorBlack.IsChecked = false; QuickColorBlue.IsChecked = false; QuickColorRed.IsChecked = false; QuickColorGreen.IsChecked = false; QuickColorPurple.IsChecked = false; // 隐藏所有check图标(单行显示) QuickColorWhiteSingle.IsChecked = false; QuickColorOrangeSingle.IsChecked = false; QuickColorYellowSingle.IsChecked = false; QuickColorBlackSingle.IsChecked = false; QuickColorRedSingle.IsChecked = false; QuickColorGreenSingle.IsChecked = false; // 显示当前选中颜色的check图标 // 在荧光笔模式下,使用更宽松的颜色匹配 int tolerance = (penType == 1) ? 25 : 15; // 荧光笔模式使用更大的容差 if (IsColorSimilar(selectedColor, Colors.White, tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(250, 250, 250), tolerance)) { QuickColorWhite.IsChecked = true; QuickColorWhiteSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Colors.Black, tolerance)) { QuickColorBlack.IsChecked = true; QuickColorBlackSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Colors.Yellow, tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(234, 179, 8), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(250, 204, 21), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(253, 224, 71), tolerance)) { QuickColorYellow.IsChecked = true; QuickColorYellowSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Color.FromRgb(255, 165, 0), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(251, 150, 80), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(249, 115, 22), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(234, 88, 12), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(251, 146, 60), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(253, 126, 20), tolerance)) { QuickColorOrange.IsChecked = true; QuickColorOrangeSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Color.FromRgb(37, 99, 235), tolerance)) { QuickColorBlue.IsChecked = true; // 单行显示模式没有蓝色,所以不设置单行的check } else if (IsColorSimilar(selectedColor, Colors.Red, tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(220, 38, 38), tolerance) || IsColorSimilar(selectedColor, Color.FromRgb(239, 68, 68), tolerance)) { QuickColorRed.IsChecked = true; QuickColorRedSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Color.FromRgb(22, 163, 74), tolerance)) { QuickColorGreen.IsChecked = true; QuickColorGreenSingle.IsChecked = true; } else if (IsColorSimilar(selectedColor, Color.FromRgb(147, 51, 234), tolerance)) { QuickColorPurple.IsChecked = true; // 单行显示模式没有紫色,所以不设置单行的check } } /// /// 检查两个颜色是否相似(允许一定的误差范围) /// private bool IsColorSimilar(Color color1, Color color2, int tolerance = 15) { int rDiff = Math.Abs(color1.R - color2.R); int gDiff = Math.Abs(color1.G - color2.G); int bDiff = Math.Abs(color1.B - color2.B); return rDiff <= tolerance && gDiff <= tolerance && bDiff <= tolerance; } /// /// 选择工具图标鼠标释放事件处理,用于切换到选择模式或选择所有墨迹 /// /// 发送者 /// 路由事件参数 private void SelectIcon_MouseUp(object sender, RoutedEventArgs e) { // 禁用高级橡皮擦系统 DisableEraserOverlay(); forceEraser = true; drawingShapeMode = 0; inkCanvas.IsManipulationEnabled = false; if (inkCanvas.EditingMode == InkCanvasEditingMode.Select) { var selectedStrokes = new StrokeCollection(); foreach (var stroke in inkCanvas.Strokes) if (stroke.GetBounds().Width > 0 && stroke.GetBounds().Height > 0) selectedStrokes.Add(stroke); inkCanvas.Select(selectedStrokes); } else { // 使用集中化的工具模式切换方法 SetCurrentToolMode(InkCanvasEditingMode.Select); } } /// /// 从图形绘制模式切换到画笔模式的提示处理 /// private void DrawShapePromptToPen() { if (isLongPressSelected) { // 如果是长按选中的状态,只隐藏面板,不切换到笔模式 HideSubPanels("shape"); } else { if (StackPanelCanvasControls.Visibility == Visibility.Visible) HideSubPanels("pen"); else HideSubPanels("cursor"); } } /// /// 关闭工具面板鼠标释放事件处理 /// /// 发送者 /// 鼠标按钮事件参数 private void CloseBordertools_MouseUp(object sender, MouseButtonEventArgs e) { HideSubPanels(); } #region Left Side Panel /// /// 手指拖动模式切换按钮点击事件处理 /// /// 发送者 /// 路由事件参数 private void BtnFingerDragMode_Click(object sender, RoutedEventArgs e) { if (isSingleFingerDragMode) { isSingleFingerDragMode = false; BtnFingerDragMode.Content = "单指\n拖动"; } else { isSingleFingerDragMode = true; BtnFingerDragMode.Content = "多指\n拖动"; } } /// /// 撤销按钮点击事件处理 /// /// 发送者 /// 路由事件参数 private void BtnUndo_Click(object sender, RoutedEventArgs e) { if (inkCanvas.GetSelectedStrokes().Count != 0) { GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; inkCanvas.Select(new StrokeCollection()); } var item = timeMachine.Undo(); ApplyHistoryToCanvas(item); } /// /// 重做按钮点击事件处理 /// /// 发送者 /// 路由事件参数 private void BtnRedo_Click(object sender, RoutedEventArgs e) { if (inkCanvas.GetSelectedStrokes().Count != 0) { GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; inkCanvas.Select(new StrokeCollection()); } var item = timeMachine.Redo(); ApplyHistoryToCanvas(item); } /// /// 按钮启用状态变更事件处理,用于更新按钮内容的透明度 /// /// 发送者 /// 依赖属性变更事件参数 private void Btn_IsEnabledChanged(object sender, DependencyPropertyChangedEventArgs e) { if (!isLoaded) return; try { if (((Button)sender).IsEnabled) ((UIElement)((Button)sender).Content).Opacity = 1; else ((UIElement)((Button)sender).Content).Opacity = 0.25; } catch (Exception ex) { System.Diagnostics.Debug.WriteLine(ex); } } #endregion Left Side Panel #region Right Side Panel public static bool CloseIsFromButton; /// /// 退出按钮点击事件处理 /// /// 发送者 /// 路由事件参数 public void BtnExit_Click(object sender, RoutedEventArgs e) { // 立即停止PPT监控,避免关闭过程中定时器继续尝试连接 try { _pptManager?.StopMonitoring(); LogHelper.WriteLogToFile("PPT监控已停止(准备关闭)", LogHelper.LogType.Trace); } catch (Exception ex) { LogHelper.WriteLogToFile($"停止PPT监控时出错: {ex.Message}", LogHelper.LogType.Error); } // 如果当前在设置面板中,需要先恢复无焦点模式状态 if (BorderSettings.Visibility == Visibility.Visible) { if (isTemporarilyDisablingNoFocusMode) { isTemporarilyDisablingNoFocusMode = false; ApplyNoFocusMode(); } SaveSettingsToFile(); } App.IsAppExitByUser = true; // 不设置 CloseIsFromButton = true,让它也经过确认流程 Close(); } /// /// 重启按钮点击事件处理 /// /// 发送者 /// 路由事件参数 public void BtnRestart_Click(object sender, RoutedEventArgs e) { if (BorderSettings.Visibility == Visibility.Visible) { if (isTemporarilyDisablingNoFocusMode) { isTemporarilyDisablingNoFocusMode = false; ApplyNoFocusMode(); } SaveSettingsToFile(); } Process.Start(System.Windows.Forms.Application.ExecutablePath, "-m"); App.IsAppExitByUser = true; // 不设置 CloseIsFromButton = true,让它也经过确认流程 Close(); } /// /// 设置覆盖层点击事件处理,用于点击设置面板外部时关闭设置面板 /// /// 发送者 /// 鼠标按钮事件参数 private void SettingsOverlayClick(object sender, MouseButtonEventArgs e) { if (isOpeningOrHidingSettingsPane) return; // 获取点击的位置 Point clickPoint = e.GetPosition(BorderSettingsMask); // 获取BorderSettings的位置和大小 Point settingsPosition = BorderSettings.TranslatePoint(new Point(0, 0), BorderSettingsMask); Rect settingsRect = new Rect( settingsPosition.X, settingsPosition.Y, BorderSettings.ActualWidth, BorderSettings.ActualHeight ); // 如果点击位置不在设置界面内部,才关闭设置界面 if (!settingsRect.Contains(clickPoint)) { BtnSettings_Click(null, null); } } private bool isOpeningOrHidingSettingsPane; private bool wasNoFocusModeBeforeSettings; /// /// 切换并打开设置面板;在需要时先进行安全密码校验,然后显示设置面板并启动打开动画,同时根据设置暂时调整无焦点模式与遮罩交互状态。 /// /// 发送者 /// 路由事件参数 internal async void BtnSettings_Click(object sender, RoutedEventArgs e) { if (BorderSettings.Visibility == Visibility.Visible) { HideSubPanels(); } else { try { if (Ink_Canvas.Helpers.SecurityManager.IsPasswordRequiredForEnterSettings(Settings)) { bool ok = await Ink_Canvas.Helpers.SecurityManager.PromptAndVerifyAsync(Settings, this, "进入设置", "请输入安全密码以进入设置。"); if (!ok) return; } } catch (Exception ex) { LogHelper.WriteLogToFile($"安全密码校验失败: {ex}", LogHelper.LogType.Error); return; } BorderSettings.Visibility = Visibility.Visible; wasNoFocusModeBeforeSettings = Settings.Advanced.IsNoFocusMode; if (wasNoFocusModeBeforeSettings) { isTemporarilyDisablingNoFocusMode = true; ApplyNoFocusMode(); } // 设置蒙版为可点击,并添加半透明背景 BorderSettingsMask.IsHitTestVisible = true; BorderSettingsMask.Background = new SolidColorBrush(Color.FromArgb(1, 0, 0, 0)); SettingsPanelScrollViewer.ScrollToTop(); var sb = new Storyboard(); // 滑动动画 var slideAnimation = new DoubleAnimation { From = BorderSettings.RenderTransform.Value.OffsetX - 490, // 滑动距离 To = 0, Duration = TimeSpan.FromSeconds(0.6), EasingFunction = new CubicEase { EasingMode = EasingMode.EaseOut } }; Storyboard.SetTargetProperty(slideAnimation, new PropertyPath("(UIElement.RenderTransform).(TranslateTransform.X)")); sb.Children.Add(slideAnimation); sb.Completed += (s, _) => { isOpeningOrHidingSettingsPane = false; }; BorderSettings.RenderTransform = new TranslateTransform(); isOpeningOrHidingSettingsPane = true; sb.Begin(BorderSettings); } } private void BtnThickness_Click(object sender, RoutedEventArgs e) { } private bool forceEraser; private void BtnClear_Click(object sender, RoutedEventArgs e) { forceEraser = false; //BorderClearInDelete.Visibility = Visibility.Collapsed; if (currentMode == 0) { // 先回到画笔再清屏,避免 TimeMachine 的相关 bug 影响 if (Pen_Icon.Background == null && StackPanelCanvasControls.Visibility == Visibility.Visible) PenIcon_Click(null, null); } else { if (Pen_Icon.Background == null) PenIcon_Click(null, null); } if (inkCanvas.Strokes.Count != 0) { var whiteboardIndex = CurrentWhiteboardIndex; if (currentMode == 0) whiteboardIndex = 0; strokeCollections[whiteboardIndex] = inkCanvas.Strokes.Clone(); } ClearStrokes(false); // 保存非笔画元素(如图片) var preservedElements = PreserveNonStrokeElements(); inkCanvas.Children.Clear(); // 恢复非笔画元素 RestoreNonStrokeElements(preservedElements); if (Settings.Canvas.ClearCanvasAndClearTimeMachine) timeMachine.ClearStrokeHistory(); CancelSingleFingerDragMode(); } private bool lastIsInMultiTouchMode; private void CancelSingleFingerDragMode() { if (ToggleSwitchDrawShapeBorderAutoHide.IsOn) CollapseBorderDrawShape(); GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; if (isSingleFingerDragMode) BtnFingerDragMode_Click(BtnFingerDragMode, null); isLongPressSelected = false; } /// /// 重置所有触摸相关状态, /// private void ResetTouchStates() { try { // 清空触摸点计数器 dec.Clear(); if (isPalmEraserActive) isPalmEraserActive = false; // 确保触摸事件能正常响应 inkCanvas.IsHitTestVisible = true; inkCanvas.IsManipulationEnabled = true; // 释放所有触摸捕获 inkCanvas.ReleaseAllTouchCaptures(); // 恢复UI元素的触摸响应 ViewboxFloatingBar.IsHitTestVisible = true; BlackboardUIGridForInkReplay.IsHitTestVisible = true; } catch (Exception ex) { LogHelper.WriteLogToFile($"重置触摸状态失败: {ex.Message}", LogHelper.LogType.Error); } } private void BtnHideControl_Click(object sender, RoutedEventArgs e) { if (StackPanelControl.Visibility == Visibility.Visible) StackPanelControl.Visibility = Visibility.Hidden; else StackPanelControl.Visibility = Visibility.Visible; } private int currentMode; // 退出批注模式时的全屏还原处理 private void RestoreFullScreenOnExitAnnotationMode() { if (Settings.Advanced.IsEnableAvoidFullScreenHelper && isFullScreenApplied && currentMode == 0 && // 不在白板模式 BtnPPTSlideShowEnd.Visibility != Visibility.Visible) // 不在PPT放映模式 { // 恢复为非画板模式,重新启用全屏限制 AvoidFullScreenHelper.SetBoardMode(false); Dispatcher.BeginInvoke(new Action(() => { // 退出批注模式,恢复到工作区域大小 var workingArea = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea; MainWindow.MoveWindow(new WindowInteropHelper(this).Handle, workingArea.Left, workingArea.Top, workingArea.Width, workingArea.Height, true); }), DispatcherPriority.ApplicationIdle); isFullScreenApplied = false; // 标记全屏处理已还原 } } /// /// 在屏幕模式、白板与黑板模式之间切换并同步相关的 UI 状态与资源处理。 /// /// /// 切换过程中会保存/清理/恢复画笔轨迹,显示或隐藏白板/黑板面板、手势面板与 PPT 控件,调整主题与悬浮工具栏可见性,处理全屏/工作区尺寸恢复或进入全屏,以及在进入白板时检查剪贴板并显示粘贴提示。该方法还会触发隐藏/显示墨迹画布的逻辑(通过调用 BtnHideInkCanvas_Click)。 /// private void BtnSwitch_Click(object sender, RoutedEventArgs e) { if (GridTransparencyFakeBackground.Background == Brushes.Transparent) { if (currentMode == 0) { currentMode++; GridBackgroundCover.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BlackboardLeftSide); AnimationsHelper.HideWithSlideAndFade(BlackboardCenterSide); AnimationsHelper.HideWithSlideAndFade(BlackboardRightSide); // 在PPT模式下隐藏手势面板和手势按钮 AnimationsHelper.HideWithSlideAndFade(TwoFingerGestureBorder); AnimationsHelper.HideWithSlideAndFade(BoardTwoFingerGestureBorder); EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; SaveStrokes(true); ClearStrokes(true); RestoreStrokes(true); if (BtnSwitchTheme.Content.ToString() == "浅色") { BtnSwitch.Content = "黑板"; BtnExit.Foreground = Brushes.White; } else { BtnSwitch.Content = "白板"; if (isPresentationHaveBlackSpace) { BtnExit.Foreground = Brushes.White; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark; } else { BtnExit.Foreground = Brushes.Black; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Light; } } StackPanelPPTButtons.Visibility = Visibility.Visible; CheckClipboardImageAndShowPasteNotificationWhenEnteringBoard(); } Topmost = true; BtnHideInkCanvas_Click(BtnHideInkCanvas, e); } else { switch (++currentMode % 2) { case 0: //屏幕模式 VideoPresenter_OnExitWhiteboardMode(); currentMode = 0; GridBackgroundCover.Visibility = Visibility.Collapsed; AnimationsHelper.HideWithSlideAndFade(BlackboardLeftSide); AnimationsHelper.HideWithSlideAndFade(BlackboardCenterSide); AnimationsHelper.HideWithSlideAndFade(BlackboardRightSide); // 在PPT模式下隐藏手势面板和手势按钮 AnimationsHelper.HideWithSlideAndFade(TwoFingerGestureBorder); AnimationsHelper.HideWithSlideAndFade(BoardTwoFingerGestureBorder); EnableTwoFingerGestureBorder.Visibility = Visibility.Collapsed; SaveStrokes(); ClearStrokes(true); RestoreStrokes(true); // 退出白板模式时取消全屏(仅在非PPT模式下) if (Settings.Advanced.IsEnableAvoidFullScreenHelper && BtnPPTSlideShowEnd.Visibility != Visibility.Visible) // 不在PPT放映模式 { // 恢复为非画板模式,重新启用全屏限制 AvoidFullScreenHelper.SetBoardMode(false); Dispatcher.BeginInvoke(new Action(() => { // 退出白板模式,恢复到工作区域大小 var workingArea = System.Windows.Forms.Screen.PrimaryScreen.WorkingArea; MainWindow.MoveWindow(new WindowInteropHelper(this).Handle, workingArea.Left, workingArea.Top, workingArea.Width, workingArea.Height, true); }), DispatcherPriority.ApplicationIdle); isFullScreenApplied = false; // 标记全屏处理已还原 } // 在屏幕模式下恢复基础浮动栏的显示 ViewboxFloatingBar.Visibility = Visibility.Visible; // 退出白板时自动收纳功能 - 等待浮动栏完全展开后再收纳 // 当处于PPT放映模式时,不自动收纳 if (Settings.Automation.IsAutoFoldWhenExitWhiteboard && !isFloatingBarFolded && BtnPPTSlideShowEnd.Visibility != Visibility.Visible) { // 使用异步延迟,等待浮动栏展开动画完成后再收纳 Task.Run(async () => { await Task.Delay(700); await Dispatcher.InvokeAsync(() => { FoldFloatingBar_MouseUp(new object(), null); }); }); } if (BtnSwitchTheme.Content.ToString() == "浅色") { BtnSwitch.Content = "黑板"; BtnExit.Foreground = Brushes.White; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark; } else { BtnSwitch.Content = "白板"; if (isPresentationHaveBlackSpace) { BtnExit.Foreground = Brushes.White; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark; } else { BtnExit.Foreground = Brushes.Black; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Light; } } StackPanelPPTButtons.Visibility = Visibility.Visible; Topmost = true; break; case 1: //黑板或白板模式 currentMode = 1; GridBackgroundCover.Visibility = Visibility.Visible; AnimationsHelper.ShowWithSlideFromBottomAndFade(BlackboardLeftSide); AnimationsHelper.ShowWithSlideFromBottomAndFade(BlackboardCenterSide); AnimationsHelper.ShowWithSlideFromBottomAndFade(BlackboardRightSide); SaveStrokes(true); ClearStrokes(true); RestoreStrokes(); // 进入白板模式时全屏(仅在非PPT模式下) if (Settings.Advanced.IsEnableAvoidFullScreenHelper && BtnPPTSlideShowEnd.Visibility != Visibility.Visible) // 不在PPT放映模式 { // 设置为画板模式,允许全屏操作 AvoidFullScreenHelper.SetBoardMode(true); Dispatcher.BeginInvoke(new Action(() => { MainWindow.MoveWindow(new WindowInteropHelper(this).Handle, 0, 0, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height, true); }), DispatcherPriority.ApplicationIdle); isFullScreenApplied = true; // 标记已应用全屏处理 } ViewboxFloatingBar.Visibility = Visibility.Collapsed; BtnSwitch.Content = "屏幕"; if (BtnSwitchTheme.Content.ToString() == "浅色") { BtnExit.Foreground = Brushes.White; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Dark; } else { BtnExit.Foreground = Brushes.Black; ThemeManager.Current.ApplicationTheme = ApplicationTheme.Light; } if (Settings.Canvas.UsingWhiteboard) { // 如果有自定义背景色并且是白板模式,应用自定义背景色 if (CustomBackgroundColor.HasValue) { GridBackgroundCover.Background = new SolidColorBrush(CustomBackgroundColor.Value); } // 白板模式下设置墨迹颜色为黑色 CheckLastColor(0); forceEraser = false; ColorSwitchCheck(); } else { // 黑板模式下设置墨迹颜色为白色 CheckLastColor(5); forceEraser = false; ColorSwitchCheck(); } StackPanelPPTButtons.Visibility = Visibility.Collapsed; if (Settings.Advanced.EnableUIAccessTopMost) { Topmost = true; } else { Topmost = false; } CheckClipboardImageAndShowPasteNotificationWhenEnteringBoard(); break; } } SyncPdfPageSidebarWithCanvas(); } private int BoundsWidth = 5; private void BtnHideInkCanvas_Click(object sender, RoutedEventArgs e) { if (GridTransparencyFakeBackground.Background == Brushes.Transparent) { // 进入批注模式 GridTransparencyFakeBackground.Opacity = 1; GridTransparencyFakeBackground.Background = new SolidColorBrush(StringToColor("#01FFFFFF")); inkCanvas.IsHitTestVisible = true; inkCanvas.Visibility = Visibility.Visible; GridBackgroundCoverHolder.Visibility = Visibility.Visible; GridInkCanvasSelectionCover.Visibility = Visibility.Collapsed; if (GridBackgroundCover.Visibility == Visibility.Collapsed) { if (BtnSwitchTheme.Content.ToString() == "浅色") BtnSwitch.Content = "黑板"; else BtnSwitch.Content = "白板"; StackPanelPPTButtons.Visibility = Visibility.Visible; } else { BtnSwitch.Content = "屏幕"; StackPanelPPTButtons.Visibility = Visibility.Collapsed; } BtnHideInkCanvas.Content = "隐藏\n画板"; // 进入批注模式时的全屏处理(仅当未应用过全屏处理时) if (Settings.Advanced.IsEnableAvoidFullScreenHelper && !isFullScreenApplied) { // 设置为画板模式,允许全屏操作 AvoidFullScreenHelper.SetBoardMode(true); Dispatcher.BeginInvoke(new Action(() => { MainWindow.MoveWindow(new WindowInteropHelper(this).Handle, 0, 0, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height, true); }), DispatcherPriority.ApplicationIdle); isFullScreenApplied = true; // 标记已应用全屏处理 } } else { // Auto-clear Strokes 要等待截图完成再清理笔记 if (BtnPPTSlideShowEnd.Visibility != Visibility.Visible) { if (isLoaded && Settings.Automation.IsAutoClearWhenExitingWritingMode) if (inkCanvas.Strokes.Count > 0) { if (Settings.Automation.IsAutoSaveStrokesAtClear && inkCanvas.Strokes.Count > Settings.Automation.MinimumAutomationStrokeNumber) CaptureAndEnqueueScreenshotSave(true); //BtnClear_Click(null, null); } inkCanvas.IsHitTestVisible = true; inkCanvas.Visibility = Visibility.Visible; } else { if (isLoaded && Settings.Automation.IsAutoClearWhenExitingWritingMode && !Settings.PowerPointSettings.IsNoClearStrokeOnSelectWhenInPowerPoint) if (inkCanvas.Strokes.Count > 0) { if (Settings.Automation.IsAutoSaveStrokesAtClear && inkCanvas.Strokes.Count > Settings.Automation.MinimumAutomationStrokeNumber) CaptureAndEnqueueScreenshotSave(true); //BtnClear_Click(null, null); } if (Settings.PowerPointSettings.IsShowStrokeOnSelectInPowerPoint) { inkCanvas.Visibility = Visibility.Visible; inkCanvas.IsHitTestVisible = true; } else { inkCanvas.IsHitTestVisible = true; inkCanvas.Visibility = Visibility.Visible; } } GridTransparencyFakeBackground.Opacity = 0; GridTransparencyFakeBackground.Background = Brushes.Transparent; GridBackgroundCoverHolder.Visibility = Visibility.Collapsed; // 退出批注模式时的全屏还原 RestoreFullScreenOnExitAnnotationMode(); if (currentMode != 0) { SaveStrokes(); RestoreStrokes(true); } if (BtnSwitchTheme.Content.ToString() == "浅色") BtnSwitch.Content = "黑板"; else BtnSwitch.Content = "白板"; StackPanelPPTButtons.Visibility = Visibility.Visible; BtnHideInkCanvas.Content = "显示\n画板"; } if (GridTransparencyFakeBackground.Background == Brushes.Transparent) { StackPanelCanvasControls.Visibility = Visibility.Collapsed; CheckEnableTwoFingerGestureBtnVisibility(false); HideSubPanels("cursor"); if (currentMode == 0) { ViewboxFloatingBar.Visibility = Visibility.Visible; } } else { AnimationsHelper.ShowWithSlideFromLeftAndFade(StackPanelCanvasControls); CheckEnableTwoFingerGestureBtnVisibility(true); if (currentMode == 0) { ViewboxFloatingBar.Visibility = Visibility.Visible; } } } private void BtnSwitchSide_Click(object sender, RoutedEventArgs e) { if (ViewBoxStackPanelMain.HorizontalAlignment == HorizontalAlignment.Right) { ViewBoxStackPanelMain.HorizontalAlignment = HorizontalAlignment.Left; ViewBoxStackPanelShapes.HorizontalAlignment = HorizontalAlignment.Right; } else { ViewBoxStackPanelMain.HorizontalAlignment = HorizontalAlignment.Right; ViewBoxStackPanelShapes.HorizontalAlignment = HorizontalAlignment.Left; } } private void StackPanel_IsVisibleChanged(object sender, DependencyPropertyChangedEventArgs e) { if (((StackPanel)sender).Visibility == Visibility.Visible) GridForLeftSideReservedSpace.Visibility = Visibility.Collapsed; else GridForLeftSideReservedSpace.Visibility = Visibility.Visible; } #endregion private void InsertImageOptions_MouseUp(object sender, MouseButtonEventArgs e) { // Check if the image options panel is currently visible bool isImagePanelVisible = BoardImageOptionsPanel.Visibility == Visibility.Visible; // Toggle the image options panel if (isImagePanelVisible) { // Panel was visible, so hide it with animation AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); } else { // Panel was hidden, so hide other panels and show this one HideSubPanels(); AnimationsHelper.ShowWithSlideFromBottomAndFade(BoardImageOptionsPanel); } } private void CloseImageOptionsPanel_MouseUp(object sender, MouseButtonEventArgs e) { AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); } private async void ImageOptionScreenshot_MouseUp(object sender, MouseButtonEventArgs e) { // Hide the options panel AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); // Wait a bit for the panel to hide await Task.Delay(100); // Capture screenshot and insert to canvas await CaptureScreenshotAndInsert(); } private async void ImageOptionSelectFile_MouseUp(object sender, MouseButtonEventArgs e) { // Hide the options panel AnimationsHelper.HideWithSlideAndFade(BoardImageOptionsPanel); // Open file dialog to select image var dialog = new OpenFileDialog { Filter = "图片与 PDF|*.jpg;*.jpeg;*.png;*.bmp;*.gif;*.pdf|图片文件|*.jpg;*.jpeg;*.png;*.bmp;*.gif|PDF|*.pdf" }; if (dialog.ShowDialog() == true) { string filePath = dialog.FileName; FrameworkElement element = await CreateAndCompressImageAsync(filePath); if (element != null) { string timestamp = "img_" + DateTime.Now.ToString("yyyyMMdd_HH_mm_ss_fff"); element.Name = timestamp; // 初始化TransformGroup var transformGroup = new TransformGroup(); transformGroup.Children.Add(new ScaleTransform(1, 1)); transformGroup.Children.Add(new TranslateTransform(0, 0)); transformGroup.Children.Add(new RotateTransform(0)); element.RenderTransform = transformGroup; CenterAndScaleElement(element); // 设置图片属性,避免被InkCanvas选择系统处理 element.IsHitTestVisible = true; element.Focusable = false; // 初始化InkCanvas选择设置 if (inkCanvas != null) { // 清除当前选择,避免显示控制点 inkCanvas.Select(new StrokeCollection()); // 同时通过图片的IsHitTestVisible和Focusable属性来避免InkCanvas选择系统的干扰 inkCanvas.EditingMode = InkCanvasEditingMode.None; } inkCanvas.Children.Add(element); // 绑定事件处理器 element.MouseLeftButtonDown += Element_MouseLeftButtonDown; element.MouseLeftButtonUp += Element_MouseLeftButtonUp; element.MouseMove += Element_MouseMove; element.MouseWheel += Element_MouseWheel; // 触摸事件 element.TouchDown += Element_TouchDown; element.TouchUp += Element_TouchUp; element.IsManipulationEnabled = true; element.ManipulationDelta += Element_ManipulationDelta; element.ManipulationCompleted += Element_ManipulationCompleted; // 设置光标 element.Cursor = Cursors.Hand; timeMachine.CommitElementInsertHistory(element); // 插入图片后切换到选择模式并刷新浮动栏高光显示 SetCurrentToolMode(InkCanvasEditingMode.Select); UpdateCurrentToolMode("select"); HideSubPanels("select"); if (element is PdfEmbeddedView) _pdfSidebarNextPositionUseHostTransform = true; SyncPdfPageSidebarWithCanvas(); } } } // 插入图片方法 private async void InsertImage_MouseUp_New(object sender, MouseButtonEventArgs e) { var dialog = new OpenFileDialog { Filter = "图片与 PDF|*.jpg;*.jpeg;*.png;*.bmp;*.gif;*.pdf|图片文件|*.jpg;*.jpeg;*.png;*.bmp;*.gif|PDF|*.pdf" }; if (dialog.ShowDialog() == true) { string filePath = dialog.FileName; FrameworkElement element = await CreateAndCompressImageAsync(filePath); if (element != null) { string timestamp = "img_" + DateTime.Now.ToString("yyyyMMdd_HH_mm_ss_fff"); element.Name = timestamp; // 初始化TransformGroup var transformGroup = new TransformGroup(); transformGroup.Children.Add(new ScaleTransform(1, 1)); transformGroup.Children.Add(new TranslateTransform(0, 0)); transformGroup.Children.Add(new RotateTransform(0)); element.RenderTransform = transformGroup; CenterAndScaleElement(element); // 设置图片属性,避免被InkCanvas选择系统处理 element.IsHitTestVisible = true; element.Focusable = false; // 初始化InkCanvas选择设置 if (inkCanvas != null) { // 清除当前选择,避免显示控制点 inkCanvas.Select(new StrokeCollection()); // 设置编辑模式为非选择模式 inkCanvas.EditingMode = InkCanvasEditingMode.None; } inkCanvas.Children.Add(element); // 绑定事件处理器 element.MouseLeftButtonDown += Element_MouseLeftButtonDown; element.MouseLeftButtonUp += Element_MouseLeftButtonUp; element.MouseMove += Element_MouseMove; element.MouseWheel += Element_MouseWheel; // 触摸事件 element.TouchDown += Element_TouchDown; element.TouchUp += Element_TouchUp; element.IsManipulationEnabled = true; element.ManipulationDelta += Element_ManipulationDelta; element.ManipulationCompleted += Element_ManipulationCompleted; // 设置光标 element.Cursor = Cursors.Hand; timeMachine.CommitElementInsertHistory(element); // 插入图片后切换到选择模式并刷新浮动栏高光显示 SetCurrentToolMode(InkCanvasEditingMode.Select); UpdateCurrentToolMode("select"); HideSubPanels("select"); if (element is PdfEmbeddedView) _pdfSidebarNextPositionUseHostTransform = true; SyncPdfPageSidebarWithCanvas(); } } } // Keep the old method for backward compatibility private async void InsertImage_MouseUp(object sender, MouseButtonEventArgs e) { var dialog = new OpenFileDialog { Filter = "图片与 PDF|*.jpg;*.jpeg;*.png;*.bmp;*.gif;*.pdf|图片文件|*.jpg;*.jpeg;*.png;*.bmp;*.gif|PDF|*.pdf" }; if (dialog.ShowDialog() == true) { string filePath = dialog.FileName; FrameworkElement element = await CreateAndCompressImageAsync(filePath); if (element != null) { string timestamp = "img_" + DateTime.Now.ToString("yyyyMMdd_HH_mm_ss_fff"); element.Name = timestamp; // 初始化TransformGroup var transformGroup = new TransformGroup(); transformGroup.Children.Add(new ScaleTransform(1, 1)); transformGroup.Children.Add(new TranslateTransform(0, 0)); transformGroup.Children.Add(new RotateTransform(0)); element.RenderTransform = transformGroup; CenterAndScaleElement(element); // 设置图片属性,避免被InkCanvas选择系统处理 element.IsHitTestVisible = true; element.Focusable = false; // 初始化InkCanvas选择设置 if (inkCanvas != null) { // 清除当前选择,避免显示控制点 inkCanvas.Select(new StrokeCollection()); // 设置编辑模式为非选择模式 inkCanvas.EditingMode = InkCanvasEditingMode.None; } inkCanvas.Children.Add(element); // 绑定事件处理器 element.MouseLeftButtonDown += Element_MouseLeftButtonDown; element.MouseLeftButtonUp += Element_MouseLeftButtonUp; element.MouseMove += Element_MouseMove; element.MouseWheel += Element_MouseWheel; // 触摸事件 element.TouchDown += Element_TouchDown; element.TouchUp += Element_TouchUp; element.IsManipulationEnabled = true; element.ManipulationDelta += Element_ManipulationDelta; element.ManipulationCompleted += Element_ManipulationCompleted; // 设置光标 element.Cursor = Cursors.Hand; timeMachine.CommitElementInsertHistory(element); // 插入图片后切换到选择模式并刷新浮动栏高光显示 SetCurrentToolMode(InkCanvasEditingMode.Select); UpdateCurrentToolMode("select"); HideSubPanels("select"); if (element is PdfEmbeddedView) _pdfSidebarNextPositionUseHostTransform = true; SyncPdfPageSidebarWithCanvas(); } } } #region 动态按钮位置计算和高光显示 /// /// 获取浮动栏中指定按钮的位置 /// /// 按钮的名称 /// 按钮在浮动栏中的相对位置 private double GetFloatingBarButtonPosition(string buttonName) { try { // 获取浮动栏容器 var floatingBarPanel = StackPanelFloatingBar; if (floatingBarPanel == null) return 0; double currentPosition = 0; // 遍历浮动栏中的所有子元素 foreach (var child in floatingBarPanel.Children) { if (child is UIElement element) { // 检查是否是我们要找的按钮 if (IsTargetButton(element, buttonName)) { return currentPosition; } // 累加当前元素的位置 currentPosition += GetElementWidth(element); } } return 0; } catch (Exception ex) { LogHelper.WriteLogToFile($"获取按钮位置失败: {ex.Message}", LogHelper.LogType.Error); return 0; } } /// /// 检查元素是否是目标按钮 /// private bool IsTargetButton(UIElement element, string buttonName) { if (element is FrameworkElement fe) { return fe.Name == buttonName; } return false; } /// /// 获取元素的宽度 /// private double GetElementWidth(UIElement element) { if (element is FrameworkElement fe) { // 对于SimpleStackPanel,使用其实际宽度 if (fe.GetType().Name == "SimpleStackPanel") { return fe.ActualWidth > 0 ? fe.ActualWidth : 28; // 默认宽度28 } // 对于其他元素,使用其宽度或默认宽度 return fe.ActualWidth > 0 ? fe.ActualWidth : 28; } return 28; // 默认宽度 } /// /// 设置浮动栏高光显示位置 /// /// 模式名称 private void SetFloatingBarHighlightPosition(string mode) { try { if (FloatingbarSelectionBG == null) return; // 检查浮动栏是否处于收起状态 if (isFloatingBarFolded || (BorderFloatingBarMainControls != null && BorderFloatingBarMainControls.Visibility == Visibility.Collapsed)) { FloatingbarSelectionBG.Visibility = Visibility.Hidden; return; } double position = 0; double buttonWidth = 28; // 每个按钮的默认宽度 double highlightWidth = 28; // 高光的默认宽度 // 检查快捷调色盘是否显示及其实际宽度 bool isQuickColorPaletteVisible = false; double quickColorPaletteWidth = 0; if (QuickColorPalettePanel != null && QuickColorPalettePanel.Visibility == Visibility.Visible) { isQuickColorPaletteVisible = true; quickColorPaletteWidth = QuickColorPalettePanel.ActualWidth > 0 ? QuickColorPalettePanel.ActualWidth : 60; } else if (QuickColorPaletteSingleRowPanel != null && QuickColorPaletteSingleRowPanel.Visibility == Visibility.Visible) { isQuickColorPaletteVisible = true; quickColorPaletteWidth = QuickColorPaletteSingleRowPanel.ActualWidth > 0 ? QuickColorPaletteSingleRowPanel.ActualWidth : 120; } // 获取实际按钮宽度,如果获取不到则使用默认值,同时考虑按钮的可见性 double cursorWidth = (Cursor_Icon?.Visibility == Visibility.Visible && Cursor_Icon?.ActualWidth > 0) ? Cursor_Icon.ActualWidth : 0; double penWidth = (Pen_Icon?.Visibility == Visibility.Visible && Pen_Icon?.ActualWidth > 0) ? Pen_Icon.ActualWidth : 0; double deleteWidth = (SymbolIconDelete?.Visibility == Visibility.Visible && SymbolIconDelete?.ActualWidth > 0) ? SymbolIconDelete.ActualWidth : 0; double eraserWidth = (Eraser_Icon?.Visibility == Visibility.Visible && Eraser_Icon?.ActualWidth > 0) ? Eraser_Icon.ActualWidth : 0; double eraserByStrokesWidth = (EraserByStrokes_Icon?.Visibility == Visibility.Visible && EraserByStrokes_Icon?.ActualWidth > 0) ? EraserByStrokes_Icon.ActualWidth : 0; double selectWidth = (SymbolIconSelect?.Visibility == Visibility.Visible && SymbolIconSelect?.ActualWidth > 0) ? SymbolIconSelect.ActualWidth : 0; // 获取高光的实际宽度 double actualHighlightWidth = FloatingbarSelectionBG.ActualWidth > 0 ? FloatingbarSelectionBG.ActualWidth : highlightWidth; double marginOffset = 0; // 快捷调色盘的Margin:Margin="4,0,4,0",所以总宽度需要加上8像素 double quickColorPaletteTotalWidth = isQuickColorPaletteVisible ? quickColorPaletteWidth + 8 : 0; // 根据模式计算位置,确保高光居中对齐按钮 switch (mode) { case "cursor": // 鼠标按钮位置:marginOffset + (cursorWidth - actualHighlightWidth) / 2 position = marginOffset + (cursorWidth - actualHighlightWidth) / 2; break; case "pen": case "color": // 批注按钮位置:marginOffset + cursorWidth + (penWidth - actualHighlightWidth) / 2 position = marginOffset + cursorWidth + (penWidth - actualHighlightWidth) / 2; break; case "eraser": if (isQuickColorPaletteVisible) { // 有快捷调色盘时:鼠标 + 批注 + 快捷调色盘(包含Margin) + 清空 + (面积擦 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + quickColorPaletteTotalWidth + deleteWidth + (eraserWidth - actualHighlightWidth) / 2; } else { // 没有快捷调色盘时:鼠标 + 批注 + 清空 + (面积擦 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + deleteWidth + (eraserWidth - actualHighlightWidth) / 2; } break; case "eraserByStrokes": if (isQuickColorPaletteVisible) { // 有快捷调色盘时:鼠标 + 批注 + 快捷调色盘(包含Margin) + 清空 + 面积擦 + (线擦 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + quickColorPaletteTotalWidth + deleteWidth + eraserWidth + (eraserByStrokesWidth - actualHighlightWidth) / 2; } else { // 没有快捷调色盘时:鼠标 + 批注 + 清空 + 面积擦 + (线擦 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + deleteWidth + eraserWidth + (eraserByStrokesWidth - actualHighlightWidth) / 2; } break; case "select": if (isQuickColorPaletteVisible) { // 有快捷调色盘时:鼠标 + 批注 + 快捷调色盘(包含Margin) + 清空 + 面积擦 + 线擦 + (套索选 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + quickColorPaletteTotalWidth + deleteWidth + eraserWidth + eraserByStrokesWidth + (selectWidth - actualHighlightWidth) / 2; } else { // 没有快捷调色盘时:鼠标 + 批注 + 清空 + 面积擦 + 线擦 + (套索选 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + deleteWidth + eraserWidth + eraserByStrokesWidth + (selectWidth - actualHighlightWidth) / 2; } break; case "shape": if (isQuickColorPaletteVisible) { // 有快捷调色盘时:鼠标 + 批注 + 快捷调色盘(包含Margin) + 清空 + 面积擦 + 线擦 + 套索选 + (几何 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + quickColorPaletteTotalWidth + deleteWidth + eraserWidth + eraserByStrokesWidth + selectWidth + (buttonWidth - actualHighlightWidth) / 2; } else { // 没有快捷调色盘时:鼠标 + 批注 + 清空 + 面积擦 + 线擦 + 套索选 + (几何 - 高光) / 2 position = marginOffset + cursorWidth + penWidth + deleteWidth + eraserWidth + eraserByStrokesWidth + selectWidth + (buttonWidth - actualHighlightWidth) / 2; } break; default: position = marginOffset; break; } // 根据主题设置高光颜色 Color highlightBackgroundColor; Color highlightBarColor; bool isDarkTheme = Settings.Appearance.Theme == 1 || (Settings.Appearance.Theme == 2 && !IsSystemThemeLight()); if (isDarkTheme) { highlightBackgroundColor = Color.FromArgb(21, 102, 204, 255); highlightBarColor = Color.FromRgb(102, 204, 255); } else { highlightBackgroundColor = Color.FromArgb(21, 59, 130, 246); highlightBarColor = Color.FromRgb(37, 99, 235); } // 设置高光背景颜色 FloatingbarSelectionBG.Background = new SolidColorBrush(highlightBackgroundColor); if (FloatingbarSelectionBG.Child is System.Windows.Controls.Canvas canvas && canvas.Children.Count > 0) { var firstChild = canvas.Children[0]; if (firstChild is Border innerBorder) { innerBorder.Background = new SolidColorBrush(highlightBarColor); } } // 设置高光位置 FloatingbarSelectionBG.Visibility = Visibility.Visible; System.Windows.Controls.Canvas.SetLeft(FloatingbarSelectionBG, position); } catch (Exception ex) { LogHelper.WriteLogToFile($"设置高光位置失败: {ex.Message}", LogHelper.LogType.Error); } } /// /// 通用子面板位置更新方法:根据触发按钮的位置,动态调整子面板的水平位置, /// 使面板水平中心对齐按钮中心。不改变面板大小,不改变上下边距。 /// /// 触发按钮元素 /// 需要定位的子面板 /// 面板默认宽度(当无法从Margin计算时使用) private void UpdateSubPanelPosition(FrameworkElement button, FrameworkElement panel, double defaultPanelWidth) { try { if (button == null || panel == null) return; if (!(panel.Parent is FrameworkElement panelContainer)) return; var ancestor = StackPanelFloatingBar; if (ancestor == null) return; // 获取按钮中心的X坐标(相对于 StackPanelFloatingBar 坐标系) var buttonTransform = button.TransformToAncestor(ancestor); var buttonOrigin = buttonTransform.Transform(new Point(0, 0)); double buttonCenterX = buttonOrigin.X + button.ActualWidth / 2.0; // 获取面板容器(零宽度Grid)的X坐标(相对于 StackPanelFloatingBar 坐标系) var containerTransform = panelContainer.TransformToAncestor(ancestor); var containerOrigin = containerTransform.Transform(new Point(0, 0)); double containerX = containerOrigin.X; // 计算当前面板宽度(保持不变):panelWidth = -Margin.Left - Margin.Right double currentLeft = panel.Margin.Left; double currentRight = panel.Margin.Right; double panelWidth = -currentLeft - currentRight; if (panelWidth <= 0) panelWidth = defaultPanelWidth; // 计算新的左边距,使面板水平中心对齐按钮: // panel_center = containerX + newLeft + panelWidth/2 = buttonCenterX // => newLeft = buttonCenterX - containerX - panelWidth/2 double newLeft = buttonCenterX - containerX - panelWidth / 2.0; // 保持面板宽度不变:-newLeft - newRight = panelWidth // => newRight = -panelWidth - newLeft double newRight = -panelWidth - newLeft; // 清除可能残留的 Margin 动画(HoldEnd 会阻止本地值生效) panel.BeginAnimation(FrameworkElement.MarginProperty, null); // 更新边距,仅调整Left/Right,保持Top/Bottom不变 var margin = panel.Margin; panel.Margin = new Thickness(newLeft, margin.Top, newRight, margin.Bottom); } catch (Exception ex) { LogHelper.WriteLogToFile($"更新子面板位置失败: {ex.Message}", LogHelper.LogType.Error); } } /// /// 更新批注子面板(PenPalette)的弹出位置,使其水平中心对齐笔按钮。 /// private void UpdatePenPalettePosition() { UpdateSubPanelPosition(Pen_Icon, PenPalette, 193); } /// /// 更新工具面板(BorderTools)的弹出位置,使其水平中心对齐工具按钮。 /// private void UpdateBorderToolsPosition() { UpdateSubPanelPosition(ToolsFloatingBarBtn, BorderTools, 119); } /// /// 更新橡皮擦尺寸面板(EraserSizePanel)的弹出位置,使其水平中心对齐橡皮擦按钮。 /// private void UpdateEraserSizePanelPosition() { UpdateSubPanelPosition(Eraser_Icon, EraserSizePanel, 120); } /// /// 更新形状绘制面板(BorderDrawShape)的弹出位置,使其水平中心对齐形状按钮。 /// private void UpdateBorderDrawShapePosition() { UpdateSubPanelPosition(ShapeDrawFloatingBarBtn, BorderDrawShape, 317); } /// /// 更新手势面板(TwoFingerGestureBorder)的弹出位置,使其水平中心对齐手势按钮。 /// private void UpdateTwoFingerGestureBorderPosition() { UpdateSubPanelPosition(EnableTwoFingerGestureBorder, TwoFingerGestureBorder, 119); } /// /// 隐藏浮动栏高光显示 /// private void HideFloatingBarHighlight() { if (FloatingbarSelectionBG != null) { FloatingbarSelectionBG.Visibility = Visibility.Hidden; System.Windows.Controls.Canvas.SetLeft(FloatingbarSelectionBG, 0); } } /// /// 获取当前选中的模式 /// /// 当前选中的模式名称 public string GetCurrentSelectedMode() { try { // 优先使用缓存的模式,避免在浮动栏刷新时返回过时的模式信息 if (!string.IsNullOrEmpty(_currentToolMode)) { return _currentToolMode; } // 如果缓存为空,则从inkCanvas状态推断模式 if (inkCanvas.EditingMode == InkCanvasEditingMode.Select) { return "select"; } if (inkCanvas.EditingMode == InkCanvasEditingMode.Ink) { // 检查是否是荧光笔模式 if (drawingAttributes != null && drawingAttributes.IsHighlighter) { return "color"; } return "pen"; } if (inkCanvas.EditingMode == InkCanvasEditingMode.EraseByPoint) { // 检查是面积擦还是线擦 if (Eraser_Icon != null && Eraser_Icon.Visibility == Visibility.Visible) { return "eraser"; } if (EraserByStrokes_Icon != null && EraserByStrokes_Icon.Visibility == Visibility.Visible) { return "eraserByStrokes"; } } else if (inkCanvas.EditingMode == InkCanvasEditingMode.None) { return "cursor"; } else if (drawingShapeMode != 0) { return "shape"; } } catch (Exception ex) { LogHelper.WriteLogToFile($"获取当前选中模式失败: {ex.Message}", LogHelper.LogType.Error); } return "cursor"; // 默认返回鼠标模式 } /// /// 更新当前工具模式缓存 /// /// 模式名称 private void UpdateCurrentToolMode(string mode) { _currentToolMode = mode; } #endregion /// /// 强制禁用所有双指手势功能(当多指书写模式启用时) /// private void ForceDisableTwoFingerGestures() { // 强制关闭所有双指手势设置 Settings.Gesture.IsEnableTwoFingerTranslate = false; Settings.Gesture.IsEnableTwoFingerZoom = false; Settings.Gesture.IsEnableTwoFingerRotation = false; // 更新UI开关状态 if (ToggleSwitchEnableTwoFingerTranslate != null) ToggleSwitchEnableTwoFingerTranslate.IsOn = false; if (ToggleSwitchEnableTwoFingerZoom != null) ToggleSwitchEnableTwoFingerZoom.IsOn = false; if (ToggleSwitchEnableTwoFingerRotation != null) ToggleSwitchEnableTwoFingerRotation.IsOn = false; // 更新设置窗口中的开关状态 if (BoardToggleSwitchEnableTwoFingerTranslate != null) BoardToggleSwitchEnableTwoFingerTranslate.IsOn = false; if (BoardToggleSwitchEnableTwoFingerZoom != null) BoardToggleSwitchEnableTwoFingerZoom.IsOn = false; if (BoardToggleSwitchEnableTwoFingerRotation != null) BoardToggleSwitchEnableTwoFingerRotation.IsOn = false; } } }