我也不知道我改了啥

This commit is contained in:
PrefacedCorg
2025-08-09 13:16:22 +08:00
parent b2a09dbf6d
commit 9591fbf146
2 changed files with 94 additions and 91 deletions
+5 -2
View File
@@ -1467,6 +1467,8 @@ namespace Ink_Canvas
#endregion Navigation Sidebar Methods
#region ???
// 添加插件系统初始化方法
private void InitializePluginSystem()
{
@@ -1521,6 +1523,7 @@ namespace Ink_Canvas
MessageBox.Show($"打开插件管理器时出错: {ex.Message}", "错误", MessageBoxButton.OK, MessageBoxImage.Error);
}
}
#endregion ???
// 在MainWindow类中添加:
private void ApplyCurrentEraserShape()
@@ -1678,7 +1681,7 @@ namespace Ink_Canvas
if (selectedUIElement is Image image)
{
ScaleImage(image, 1.25); // 放大5%
ScaleImage(image, 1.25);
}
}
@@ -1688,7 +1691,7 @@ namespace Ink_Canvas
if (selectedUIElement is Image image)
{
ScaleImage(image, 0.8); // 缩小5%
ScaleImage(image, 0.8);
}
}