添加项目文件。

This commit is contained in:
ShrlAlgo
2025-09-04 09:53:20 +08:00
parent 54b372165a
commit 5f24922f54
42 changed files with 5570 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Windows;
using AddInManager.Properties;
namespace AddInManager
{
public class FailedToRunECDialog
{
public static MessageBoxResult Show(string ecName)
{
var text = $"选中外部命令 [{ecName}] 返回 \"Result.Failed\",请检查测试脚本";
return MessageBox.Show(text, Resources.AppName, MessageBoxButton.OK);
}
}
}