forked from 3dcustom/tso2pmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgressForm.cs
273 lines (242 loc) · 7.31 KB
/
ProgressForm.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading;
using System.Windows.Forms;
namespace TDCGUtils
{
public partial class ProgressForm : Form
{
public ProgressForm()
{
InitializeComponent();
}
public ProgressForm(string message)
{
InitializeComponent();
label1.Text = message;
}
public Label Label1 { set { label1 = value; } get { return label1; } }
public ProgressBar ProgressBar1 { set { progressBar1 = value; this.Update(); } get { return progressBar1; } }
}
/// <summary>
/// 進行状況ダイアログを表示するためのクラス
/// </summary>
public class ProgressDialog : IDisposable
{
//キャンセルボタンがクリックされたか
private volatile bool _canceled = false;
//ダイアログフォーム
private volatile ProgressForm form;
//フォームが表示されるまで待機するための待機ハンドル
private ManualResetEvent startEvent;
//フォームが一度表示されたか
private bool showed = false;
//フォームをコードで閉じているか
private volatile bool closing = false;
//オーナーフォーム
private Form ownerForm;
//別処理をするためのスレッド
private Thread thread;
//フォームのタイトル
private volatile string _title = "進行状況";
//ProgressBarの最小、最大、現在の値
private volatile int _minimum = 0;
private volatile int _maximum = 100;
private volatile int _value = 0;
//表示するメッセージ
private volatile string _message = "";
/// <summary>
/// ダイアログのタイトルバーに表示する文字列
/// </summary>
public string Title
{
set
{
_title = value;
if (form != null)
form.Invoke(new MethodInvoker(SetTitle));
}
get
{
return _message;
}
}
/// <summary>
/// プログレスバーの最小値
/// </summary>
public int Minimum
{
set
{
_minimum = value;
if (form != null)
form.Invoke(new MethodInvoker(SetProgressMinimum));
}
get
{
return _minimum;
}
}
/// <summary>
/// プログレスバーの最大値
/// </summary>
public int Maximum
{
set
{
_maximum = value;
if (form != null)
form.Invoke(new MethodInvoker(SetProgressMaximun));
}
get
{
return _maximum;
}
}
/// <summary>
/// プログレスバーの値
/// </summary>
public int Value
{
set
{
_value = value;
if (form != null)
form.Invoke(new MethodInvoker(SetProgressValue));
}
get
{
return _value;
}
}
/// <summary>
/// ダイアログに表示するメッセージ
/// </summary>
public string Message
{
set
{
_message = value;
if (form != null)
form.Invoke(new MethodInvoker(SetMessage));
}
get
{
return _message;
}
}
/// <summary>
/// キャンセルされたか
/// </summary>
public bool Canceled
{
get { return _canceled; }
}
/// <summary>
/// ダイアログを表示する
/// </summary>
/// <param name="owner">
/// ownerの中央にダイアログが表示される
/// </param>
/// <remarks>
/// このメソッドは一回しか呼び出せません。
/// </remarks>
public void Show(Form owner)
{
if (showed)
throw new Exception("ダイアログは一度表示されています。");
showed = true;
_canceled = false;
startEvent = new ManualResetEvent(false);
ownerForm = owner;
//スレッドを作成
thread = new Thread(new ThreadStart(Run));
thread.IsBackground = true;
this.thread.SetApartmentState(ApartmentState.STA);
thread.Start();
//フォームが表示されるまで待機する
startEvent.WaitOne();
}
public void Show()
{
Show(null);
}
//別スレッドで処理するメソッド
private void Run()
{
//フォームの設定
form = new ProgressForm();
form.Text = _title;
//form.Button1.Click += new EventHandler(Button1_Click);
form.Closing += new CancelEventHandler(form_Closing);
form.Activated += new EventHandler(form_Activated);
form.ProgressBar1.Minimum = _minimum;
form.ProgressBar1.Maximum = _maximum;
form.ProgressBar1.Value = _value;
// 画面の中央へ
form.StartPosition = FormStartPosition.CenterScreen;
//フォームの表示
form.ShowDialog();
form.Dispose();
}
/// <summary>
/// ダイアログを閉じる
/// </summary>
public void Close()
{
closing = true;
form.Invoke(new MethodInvoker(form.Close));
}
public void Dispose()
{
form.Invoke(new MethodInvoker(form.Dispose));
}
private void SetProgressValue()
{
if (form != null && !form.IsDisposed)
form.ProgressBar1.Value = _value;
}
private void SetMessage()
{
if (form != null && !form.IsDisposed)
form.Label1.Text = _message;
}
private void SetTitle()
{
if (form != null && !form.IsDisposed)
form.Text = _title;
}
private void SetProgressMaximun()
{
if (form != null && !form.IsDisposed)
form.ProgressBar1.Maximum = _maximum;
}
private void SetProgressMinimum()
{
if (form != null && !form.IsDisposed)
form.ProgressBar1.Minimum = _minimum;
}
private void Button1_Click(object sender, EventArgs e)
{
_canceled = true;
}
private void form_Closing(object sender, CancelEventArgs e)
{
if (!closing)
{
e.Cancel = true;
_canceled = true;
}
}
private void form_Activated(object sender, EventArgs e)
{
form.Activated -= new EventHandler(form_Activated);
startEvent.Set();
}
}
}