This commit is contained in:
2026-04-05 21:32:01 +08:00
parent 8c090218d1
commit 243201502b
4 changed files with 41 additions and 0 deletions
+16
View File
@@ -4711,6 +4711,22 @@ namespace Ink_Canvas
}
}
internal void OpenQuickDrawFromHotkey()
{
try
{
if (Settings?.RandSettings?.EnableQuickDraw != true)
return;
var quickDrawWindow = new QuickDrawWindow();
quickDrawWindow.ShowDialog();
}
catch (Exception ex)
{
LogHelper.WriteLogToFile($"打开快抽窗口失败: {ex.Message}", LogHelper.LogType.Error);
}
}
/// <summary>
/// 显示快抽悬浮按钮
/// </summary>