diff --git a/ViewModels/D7896ViewModel.cs b/ViewModels/D7896ViewModel.cs index c37426a..70ed561 100644 --- a/ViewModels/D7896ViewModel.cs +++ b/ViewModels/D7896ViewModel.cs @@ -444,7 +444,7 @@ public partial class D7896ViewModel : ObservableObject // 测量间隔(即使舍弃也等待,让样品恢复) if (validCount < requiredCount && !_stopRequested && attemptCount < maxAttempts) { - try { await Task.Delay(_config.TestParameters.IntervalSeconds * 1000, _testCts.Token); } catch (OperationCanceledException) { break; } + try { await Task.Delay(_config.TestParameters.IntervalSeconds * 200, _testCts.Token); } catch (OperationCanceledException) { break; } } } diff --git a/Window1.xaml b/Window1.xaml index 5719259..db1ef6f 100644 --- a/Window1.xaml +++ b/Window1.xaml @@ -16,7 +16,7 @@