add:调用Classisland点名功能

在点名中增加了调用Ci的点名选项
This commit is contained in:
CJK_mkp
2025-06-10 14:19:01 +08:00
parent f2b32b40a4
commit 9b1d9c117e
5 changed files with 77 additions and 18 deletions
+17
View File
@@ -8,6 +8,7 @@ using System.Linq;
using System.Threading;
using System.Windows;
using System.Windows.Input;
using MessageBox = iNKORE.UI.WPF.Modern.Controls.MessageBox;
namespace Ink_Canvas {
/// <summary>
@@ -205,5 +206,21 @@ namespace Ink_Canvas {
private void BtnClose_MouseUp(object sender, MouseButtonEventArgs e) {
Close();
}
private void BorderBtnIslandCaller_MouseUp(object sender, MouseButtonEventArgs e)
{
try
{
System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo
{
FileName = "classisland://plugins/IslandCaller/Run",
UseShellExecute = true
});
}
catch (Exception ex)
{
MessageBox.Show("无法调用外部点名:" + ex.Message);
}
}
}
}