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
110 lines (85 loc) · 2.86 KB
/
StatusWindow.xaml.cs
File metadata and controls
110 lines (85 loc) · 2.86 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
using MahApps.Metro.Controls;
using NETworkManager.Utilities;
using NETworkManager.Views;
using System.ComponentModel;
using System.Runtime.CompilerServices;
using System.Windows.Forms;
using System.Windows.Input;
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
private MainWindow _mainWindow;
private NetworkConnectionView _networkConnectionView;
#endregion
#region Constructor
public StatusWindow(MainWindow mainWindow)
{
InitializeComponent();
DataContext = this;
_mainWindow = mainWindow;
_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="activate">Focus the window (will automatically hide if the focus is lost).</param>
public void ShowWindow(bool activate)
{
// 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 (activate)
Activate();
Topmost = true;
}
#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();
}
#endregion
}
}