更改运行方式,添加两种模式Debug和Release模式对在界面点击运行和在工具中运行进行区分

This commit is contained in:
liu.wenjie
2019-08-13 20:45:04 +08:00
parent a4993a95fa
commit e2de1d384f
124 changed files with 137 additions and 95 deletions

View File

@@ -10,8 +10,9 @@ namespace ToolBase
{
public interface IToolBase
{
SoftwareRunState softwareRunState { get; set; }
ToolRunStatu toolRunStatu { get; set; }
void Run();
void Run(SoftwareRunState softwareRunState);
HObject inputImage { get; set; }
void DispImage();
}