aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs
diff options
context:
space:
mode:
authorMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
committerMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
commit00a491d93733d4625ad329b2ba8237f445364b3f (patch)
tree4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs
parent124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff)
downloadTango-00a491d9.tar.gz
Tango-00a491d9.zip
merge
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs82
1 files changed, 0 insertions, 82 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs
deleted file mode 100644
index f8027b4c2..000000000
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Dialogs/SafetyLevelOperationsConfirmationViewVM.cs
+++ /dev/null
@@ -1,82 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-using System.Windows;
-using System.Windows.Threading;
-using Tango.Integration.ExternalBridge;
-using Tango.PMR.Integration;
-using Tango.SharedUI;
-
-namespace Tango.PPC.UI.Dialogs
-{
- public class SafetyLevelOperationsConfirmationViewVM : DialogViewVM
- {
- private DispatcherTimer _timer;
-
- private int _maxSeconds;
- public int MaxSeconds
- {
- get { return _maxSeconds; }
- set { _maxSeconds = value; RaisePropertyChangedAuto(); }
- }
-
- private int _secondsRemaining;
- public int SecondsRemaining
- {
- get { return _secondsRemaining; }
- set { _secondsRemaining = value; RaisePropertyChangedAuto(); }
- }
-
- private ExternalBridgeClientConnectedEventArgs _connection;
- /// <summary>
- /// Gets or sets the last client connection event arguments.
- /// </summary>
- public ExternalBridgeClientConnectedEventArgs Connection
- {
- get { return _connection; }
- set { _connection = value; RaisePropertyChangedAuto(); }
- }
-
- public SafetyLevelOperationsConfirmationViewVM(ExternalBridgeClientConnectedEventArgs connection)
- {
- Connection = connection;
-
- MaxSeconds = 30;
- SecondsRemaining = 30;
-
- _timer = new DispatcherTimer(DispatcherPriority.Background, Application.Current.Dispatcher);
- _timer.Interval = TimeSpan.FromMilliseconds(800);
- _timer.Tick += _timer_Tick;
- }
-
- public override void OnShow()
- {
- base.OnShow();
- _timer.Start();
- }
-
- protected override void Accept()
- {
- _timer.Stop();
- base.Accept();
- }
-
- protected override void Cancel()
- {
- _timer.Stop();
- base.Cancel();
- }
-
- private void _timer_Tick(object sender, EventArgs e)
- {
- SecondsRemaining--;
-
- if (SecondsRemaining == 0)
- {
- Cancel();
- }
- }
- }
-}