originale view support
This commit is contained in:
@@ -108,7 +108,7 @@ public partial class ErrorPreviewVM:ObservableObject
|
||||
ImageAnalysis = null;
|
||||
return;
|
||||
}
|
||||
|
||||
OriginalView= false;
|
||||
IsNextImageEnabled = imageIndex < _errorsVm.Errors.Count - 1;
|
||||
IsPreviousImageEnabled = imageIndex > 0;
|
||||
ImageName = _errorData.Title;
|
||||
|
||||
@@ -57,8 +57,8 @@ namespace VisionBuilder.UI.Common
|
||||
|
||||
public bool CanStop => IsRunning;
|
||||
public bool CanStart => !IsRunning && SelectedRecipe!=null;
|
||||
public bool CanPause => (IsRunning && !IsPaused);
|
||||
public bool CanResume => (IsRunning && IsPaused);
|
||||
public bool CanPause => (IsRunning && !IsPaused)&&_uiConfiguration.ShowPauseButton;
|
||||
public bool CanResume => (IsRunning && IsPaused) && _uiConfiguration.ShowPauseButton;
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user