mirror of
https://github.com/ShrlAlgo/AddinManager.git
synced 2026-03-08 00:48:56 +00:00
16 lines
399 B
C#
16 lines
399 B
C#
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);
|
|
}
|
|
}
|
|
}
|