-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.xaml.cs
284 lines (216 loc) · 7.83 KB
/
MainWindow.xaml.cs
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Configuration;
using System.IO;
using ComputerShutdown.Model;
namespace ComputerShutdown
{
/// <summary>
/// MainWindow.xaml 的交互逻辑
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
this.Init();
var programPath = AppDomain.CurrentDomain.BaseDirectory;
var configFileName = "ComputerShutdown.exe.config";
string path = Path.Combine(programPath, configFileName);
this.ConfigHelper = new ConfigHelper(path);
}
private const string WINDOW_POSITION = "WindowPosition";
private const string Timer_TYPE = "Timer_TYPE";
private const string SET_TIME = "SetTime";
private ConfigHelper ConfigHelper
{
get;
set;
}
private Setting GetConfigInfo()
{
/* string windowPosition = ConfigurationManager.AppSettings[WINDOW_POSITION];
string [] array = windowPosition.*/
string chooseType = ConfigurationManager.AppSettings[Timer_TYPE];
int type = Convert.ToInt32(chooseType);
string timerTime = ConfigurationManager.AppSettings[SET_TIME];
double time = Convert.ToDouble(timerTime);
string WPStr = ConfigurationManager.AppSettings[WINDOW_POSITION];
Setting setting = new Setting();
if (WPStr == null)
{
setting.WindowPosition = null;
} else
{
string [] array = WPStr.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries);
if (array.Length != 2)
{
setting.WindowPosition = null;
} else
{
if (!double.TryParse(array[0], out double left) || !double.TryParse(array[1], out double top))
{
setting.WindowPosition = null;
} else
{
setting.WindowPosition = new WindowPosition()
{
Left = left,
Top = top,
};
}
}
}
setting.TimerType = type;
setting.SetTime = time;
return setting;
}
private void Init()
{
Setting setting = this.GetConfigInfo();
this.ResizeMode = ResizeMode.CanMinimize;
this.Operate.Content = START;
/*
* 0: 时
* 1: 分
* 2: 秒
*/
this.TimerType = setting.TimerType;
if (setting.WindowPosition == null)
{
WindowStartupLocation = WindowStartupLocation.CenterScreen;
} else
{
this.Top = setting.WindowPosition.Top;
this.Left = setting.WindowPosition.Left;
}
TimerInput.Text = setting.SetTime.ToString();
if (this.TimerType == 0)
{
this.Hour.IsChecked = true;
} else if (this.TimerType == 1)
{
this.Minute.IsChecked = true;
} else
{
this.Second.IsChecked = true;
}
this.Hour.Checked += (object sender, RoutedEventArgs e) => this.RadioButtonEventHandle(sender, e);
this.Minute.Checked += (object sender, RoutedEventArgs e) => this.RadioButtonEventHandle(sender, e);
this.Second.Checked += (object sender, RoutedEventArgs e) => this.RadioButtonEventHandle(sender, e);
this.btnAbout.Click += BtnAbout_Click;
Dict = new Dictionary<int, TimerTypeEmum>();
this.Dict.Add(0, TimerTypeEmum.Hour);
this.Dict.Add(1, TimerTypeEmum.Minute);
this.Dict.Add(2, TimerTypeEmum.Second);
this.ShutdownTimer = new ShutdownTimer();
this.Dep = Dep.GetInstance();
this.Dep.Event += Dep_Event;
}
private void BtnAbout_Click(object sender, RoutedEventArgs e)
{
Instructions instructions = new Instructions(this.Left, this.Top);
instructions.ShowDialog();
}
private void Dep_Event(object obj)
{
if (!long.TryParse(obj.ToString(), out long microsecond))
{
return;
}
// 显示剩余时间
// 微秒转秒
var s = microsecond / 10000000.0;
int second = (int)s;
int hour = second / 3600;
int minute = second % 3600 / 60;
int sec = second % 60;
var message = String.Format("{0}小时{1}分钟{2}秒\r\n后将自动电脑关机", hour, minute, sec);
this.RemainingTime.Dispatcher.Invoke(new Action(() => this.RemainingTime.Text = message ));
}
private Dep Dep
{
get;
set;
}
private int TimerType {
get;
set;
}
private ShutdownTimer ShutdownTimer
{
get;
set;
}
private const string START = "启动";
private const string STOP = "停止";
private Dictionary<int, TimerTypeEmum> Dict {
get;
set;
}
private void Run(object sender, RoutedEventArgs e)
{
var button = sender as Button;
var inputMessage = this.TimerInput.Text;
double number;
if (!double.TryParse(inputMessage, out number))
{
MessageBox.Show("输入的时间格式不对", "错误", MessageBoxButton.OK, MessageBoxImage.Warning);
return;
}
var type = this.TimerType;
int second = Utils.TransfromSecond(number, this.Dict[type]);
if (second < 5)
{
MessageBox.Show("输入时间需要大于 5 秒", "提示", MessageBoxButton.OK, MessageBoxImage.Information);
return;
}
if (sender == null)
{
return;
}
if (Convert.ToBoolean(button.Tag) == false)
{
button.Content = STOP;
// 启动定时
button.Tag = true;
bool b = this.ShutdownTimer.StartTimer(second);
ConfigHelper.SetConfig(SET_TIME, number.ToString());
}
else
{
button.Content = START;
this.ShutdownTimer.StopTimer();
this.RemainingTime.Text = "";
button.Tag = false;
}
}
private void RadioButtonEventHandle(object sender, RoutedEventArgs e)
{
var radioButton = sender as RadioButton;
if (radioButton == null)
{
return;
}
this.TimerType = Convert.ToInt32(radioButton.Tag);
this.ConfigHelper.SetConfig(Timer_TYPE, this.TimerType.ToString());
}
private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e)
{
this.ShutdownTimer.StopTimer();
var value = string.Format("{0},{1}", this.Left, this.Top);
this.ConfigHelper.SetConfig(WINDOW_POSITION, value);
}
}
}