优化了中断功能。

This commit is contained in:
fengjiayi
2024-09-22 17:37:32 +08:00
parent c930c870a6
commit eff0de410b
51 changed files with 5258 additions and 396 deletions

View File

@@ -49,7 +49,7 @@ namespace Serein.WorkBench.Node.ViewModel
if (value != null)
{
Node.DebugSetting = value;
OnPropertyChanged(nameof(DebugSetting));
OnPropertyChanged(/*nameof(DebugSetting)*/);
}
}
}
@@ -62,7 +62,7 @@ namespace Serein.WorkBench.Node.ViewModel
if(value != null)
{
Node.MethodDetails = value;
OnPropertyChanged(nameof(MethodDetails));
OnPropertyChanged(/*nameof(MethodDetails)*/);
}
}
}
@@ -74,7 +74,7 @@ namespace Serein.WorkBench.Node.ViewModel
set
{
isInterrupt = value;
OnPropertyChanged(nameof(IsInterrupt));
OnPropertyChanged(/*nameof(IsInterrupt)*/);
}
}