-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathProgressWindow.xaml.cs
More file actions
165 lines (149 loc) · 3.55 KB
/
ProgressWindow.xaml.cs
File metadata and controls
165 lines (149 loc) · 3.55 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
using System;
using System.ComponentModel;
using System.Windows;
using Waher.Events;
namespace Waher.IoTGateway.Setup.Windows
{
/// <summary>
/// Interaction logic for ProgressWindow.xaml
/// </summary>
public partial class ProgressWindow : Window, INotifyPropertyChanged
{
private string installationStatus = string.Empty;
private int nrFilesExpected= 0;
private int nrFilesCopied= 0;
private int nrFilesSkipped= 0;
private int nrFilesDeleted= 0;
private int progressPercent= 0;
private bool hasInstallationStatus = false;
private bool installingFiles = true;
/// <summary>
/// Interaction logic for ProgressWindow.xaml
/// </summary>
/// <param name="NrFilesExpected">Number of files expected during installation.</param>
public ProgressWindow(int NrFilesExpected)
{
this.nrFilesExpected = NrFilesExpected;
this.InitializeComponent();
this.DataContext = this;
}
public int NrFilesExpected
{
get => this.nrFilesExpected;
set
{
if (this.nrFilesExpected != value)
{
this.nrFilesExpected = value;
this.RaisePropertyChanged(nameof(this.NrFilesExpected));
}
}
}
public int ProgressPercent
{
get => this.progressPercent;
set
{
if (this.progressPercent != value)
{
this.progressPercent = value;
this.RaisePropertyChanged(nameof(this.ProgressPercent));
}
}
}
public int NrFilesCopied
{
get => this.nrFilesCopied;
set
{
if (this.nrFilesCopied != value)
{
this.nrFilesCopied = value;
this.RaisePropertyChanged(nameof(this.NrFilesCopied));
this.ProgressPercent = Math.Min(100, (int)(100.0 * this.nrFilesCopied / this.NrFilesExpected + 0.5));
}
}
}
public int NrFilesSkipped
{
get => this.nrFilesSkipped;
set
{
if (this.nrFilesSkipped != value)
{
this.nrFilesSkipped = value;
this.RaisePropertyChanged(nameof(this.NrFilesSkipped));
}
}
}
public int NrFilesDeleted
{
get => this.nrFilesDeleted;
set
{
if (this.nrFilesDeleted != value)
{
this.nrFilesDeleted = value;
this.RaisePropertyChanged(nameof(this.NrFilesDeleted));
}
}
}
public string InstallationStatus
{
get => this.installationStatus;
set
{
if (this.installationStatus != value)
{
this.installationStatus = value;
this.RaisePropertyChanged(nameof(this.InstallationStatus));
this.HasInstallationStatus = !string.IsNullOrEmpty(value);
this.InstallingFiles = string.IsNullOrEmpty(value);
}
}
}
public bool HasInstallationStatus
{
get => this.hasInstallationStatus;
set
{
if (this.hasInstallationStatus != value)
{
this.hasInstallationStatus = value;
this.RaisePropertyChanged(nameof(this.HasInstallationStatus));
}
}
}
public bool InstallingFiles
{
get => this.installingFiles;
set
{
if (this.installingFiles != value)
{
this.installingFiles = value;
this.RaisePropertyChanged(nameof(this.InstallingFiles));
}
}
}
public event PropertyChangedEventHandler? PropertyChanged;
private void RaisePropertyChanged(string PropertyName)
{
try
{
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(PropertyName));
}
catch (Exception ex)
{
Log.Exception(ex);
}
}
public void ReportProgress(int NrFilesCopied, int NrFilesSkipped, int NrFilesDeleted, string InstallationStatus)
{
this.NrFilesCopied = NrFilesCopied;
this.NrFilesSkipped = NrFilesSkipped;
this.NrFilesDeleted = NrFilesDeleted;
this.InstallationStatus = InstallationStatus;
}
}
}