forked from BornToBeRoot/NETworkManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStatusWindow.xaml.cs
More file actions
180 lines (143 loc) · 4.12 KB
/
Copy pathStatusWindow.xaml.cs
File metadata and controls
180 lines (143 loc) · 4.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
using MahApps.Metro.Controls;
using NETworkManager.Settings;
using NETworkManager.Utilities;
using NETworkManager.Views;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
using System.Windows.Input;
using System.Windows.Threading;
namespace NETworkManager;
public partial class StatusWindow : MetroWindow, INotifyPropertyChanged
{
#region PropertyChangedEventHandler
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
#endregion
#region Variables
// Set prio to make the ui smoother
private readonly DispatcherTimer _dispatcherTimerClose = new(DispatcherPriority.Normal);
private readonly MainWindow _mainWindow;
private readonly NetworkConnectionView _networkConnectionView;
private bool _showTime;
public bool ShowTime
{
get => _showTime;
set
{
if (value == _showTime)
return;
_showTime = value;
OnPropertyChanged();
}
}
private int _timeMax;
public int TimeMax
{
get => _timeMax;
set
{
if (value == _timeMax)
return;
_timeMax = value;
OnPropertyChanged();
}
}
private int _time;
public int Time
{
get => _time;
set
{
if (value == _time)
return;
_time = value;
OnPropertyChanged();
}
}
#endregion
#region Constructor
public StatusWindow(MainWindow mainWindow)
{
InitializeComponent();
DataContext = this;
_mainWindow = mainWindow;
_dispatcherTimerClose.Interval = new System.TimeSpan(0, 0, 0, 0, 250);
_dispatcherTimerClose.Tick += DispatcherTimerTime_Tick;
_networkConnectionView = new NetworkConnectionView();
ContentControlNetworkConnection.Content = _networkConnectionView;
}
#endregion
#region ICommands & Actions
public ICommand ReloadCommand => new RelayCommand(p => ReloadAction());
private void ReloadAction()
{
Reload();
}
public ICommand ShowMainWindowCommand => new RelayCommand(p => ShowMainWindowAction());
private void ShowMainWindowAction()
{
Hide();
if (_mainWindow.ShowWindowCommand.CanExecute(null))
_mainWindow.ShowWindowCommand.Execute(null);
}
public ICommand CloseCommand => new RelayCommand(p => CloseAction());
private void CloseAction()
{
Hide();
}
#endregion
#region Methods
private void Reload()
{
_networkConnectionView.Reload();
}
/// <summary>
/// Show the window on the screen.
/// </summary>
/// <param name="fromNetworkChangeEvent">Focus the window (will automatically hide if the focus is lost).</param>
public void ShowWindow(bool fromNetworkChangeEvent)
{
// Show on primary screen in left/bottom corner
// ToDo: User setting...
Left = Screen.PrimaryScreen.WorkingArea.Right - Width - 10;
Top = Screen.PrimaryScreen.WorkingArea.Bottom - Height - 10;
Show();
if (fromNetworkChangeEvent)
Activate();
else
SetupCloseTimer();
Topmost = true;
}
private void SetupCloseTimer()
{
Time = SettingsManager.Current.Status_WindowCloseTime * 4;
TimeMax = Time;
ShowTime = true;
_dispatcherTimerClose.Start();
}
#endregion
#region Events
private void MetroWindow_Deactivated(object sender, System.EventArgs e)
{
Hide();
}
private void MetroWindow_Closing(object sender, CancelEventArgs e)
{
e.Cancel = true;
Hide();
}
private void DispatcherTimerTime_Tick(object sender, System.EventArgs e)
{
Time--;
if (Time > 0)
return;
_dispatcherTimerClose.Stop();
ShowTime = false;
Hide();
}
#endregion
}