mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-07 16:38:56 +00:00
添加项目文件。
This commit is contained in:
16
AddInManager/FailedToRunECDialog.cs
Normal file
16
AddInManager/FailedToRunECDialog.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user