リビジョン 111
Office.Core/VisualBasic.PowerPacks/VBIDE参照削除
未使用フォーム削除
branches/src/ProcessManagement/ProcessManagement/Forms/CustomControls/MoveTextBox.cs | ||
---|---|---|
1 |
using System; |
|
2 |
using System.Collections.Generic; |
|
3 |
using System.ComponentModel; |
|
4 |
using System.Data; |
|
5 |
using System.Drawing; |
|
6 |
using System.Linq; |
|
7 |
using System.Text; |
|
8 |
using System.Threading.Tasks; |
|
9 |
using System.Windows.Forms; |
|
10 |
using Microsoft.VisualBasic.PowerPacks; |
|
11 |
|
|
12 |
using ProcessManagement.Forms.ControlsAction; |
|
13 |
|
|
14 |
namespace ProcessManagement.Forms.CustomControls |
|
15 |
{ |
|
16 |
/// <summary> |
|
17 |
/// ドラックアンドドロップによる移動・サイズ変更テキストボックス |
|
18 |
/// </summary> |
|
19 |
public class MoveTextBox : TextBox |
|
20 |
{ |
|
21 |
#region 定数 |
|
22 |
/// <summary> |
|
23 |
/// ウィンドウメッセージ |
|
24 |
/// </summary> |
|
25 |
const int WM_LBUTTONDOWN = 0x201; |
|
26 |
#endregion |
|
27 |
|
|
28 |
#region 変数 |
|
29 |
/// <summary> |
|
30 |
/// 入力値変更時使用エリア |
|
31 |
/// </summary> |
|
32 |
int selectionStart, selectionLength; |
|
33 |
/// <summary> |
|
34 |
/// マウスポイント |
|
35 |
/// </summary> |
|
36 |
Point mouseDownPoint = new Point(); |
|
37 |
/// <summary> |
|
38 |
/// マウスドラッグフラグ |
|
39 |
/// </summary> |
|
40 |
bool dAndDMoveFlag = false; |
|
41 |
/// <summary> |
|
42 |
/// マウス移動フラグ |
|
43 |
/// </summary> |
|
44 |
bool isMoved = false; |
|
45 |
/// <summary> |
|
46 |
/// 親のコントロール |
|
47 |
/// </summary> |
|
48 |
private ShapeContainer m_ParentControl = null; |
|
49 |
/// <summary> |
|
50 |
/// ツールチップの文字列 |
|
51 |
/// </summary> |
|
52 |
private string m_ToolTipString = string.Empty; |
|
53 |
/// <summary> |
|
54 |
/// その他保管文字列 |
|
55 |
/// </summary> |
|
56 |
private string m_ContinerString = string.Empty; |
|
57 |
/// <summary> |
|
58 |
/// その他保管コード |
|
59 |
/// </summary> |
|
60 |
private int m_ContinerCode = 0; |
|
61 |
|
|
62 |
/// <summary> |
|
63 |
/// 引き出し線 |
|
64 |
/// </summary> |
|
65 |
private LineShape m_MyLine = null; |
|
66 |
|
|
67 |
/// <summary> |
|
68 |
/// ツールチップ |
|
69 |
/// </summary> |
|
70 |
private ToolTip m_MyToolTip = null; |
|
71 |
/// <summary> |
|
72 |
/// 描画色 |
|
73 |
/// </summary> |
|
74 |
private Color m_MyDrowColor = Color.White; |
|
75 |
|
|
76 |
/// <summary> |
|
77 |
/// 親のポイント |
|
78 |
/// </summary> |
|
79 |
private Point m_ParentPoint = new Point(0, 0); |
|
80 |
/// <summary> |
|
81 |
/// 親のサイズ |
|
82 |
/// </summary> |
|
83 |
private Size m_ParentSize = new Size(1, 1); |
|
84 |
|
|
85 |
/// <summary> |
|
86 |
/// 自分の初期ポイント |
|
87 |
/// </summary> |
|
88 |
private Point m_MyDrowPoint = new Point(0, 0); |
|
89 |
|
|
90 |
/// <summary> |
|
91 |
/// フォーカスを受けたフラグ |
|
92 |
/// </summary> |
|
93 |
private bool m_MyFocusFlg = false; |
|
94 |
#endregion |
|
95 |
|
|
96 |
#region プロパティ |
|
97 |
|
|
98 |
/// <summary> |
|
99 |
/// 親のポイント |
|
100 |
/// </summary> |
|
101 |
public Point ParentPoint |
|
102 |
{ |
|
103 |
get { return m_ParentPoint; } |
|
104 |
set { m_ParentPoint = value; } |
|
105 |
} |
|
106 |
/// <summary> |
|
107 |
/// 親のサイズ |
|
108 |
/// </summary> |
|
109 |
public Size ParentSize |
|
110 |
{ |
|
111 |
get { return m_ParentSize; } |
|
112 |
set { m_ParentSize = value; } |
|
113 |
} |
|
114 |
|
|
115 |
/// <summary> |
|
116 |
/// 描画色 |
|
117 |
/// </summary> |
|
118 |
public Color DrowColor |
|
119 |
{ |
|
120 |
get { return m_MyDrowColor; } |
|
121 |
set { m_MyDrowColor = value; } |
|
122 |
} |
|
123 |
|
|
124 |
/// <summary> |
|
125 |
/// 自分の初期ポイント |
|
126 |
/// </summary> |
|
127 |
public Point StartPoint |
|
128 |
{ |
|
129 |
get { return m_MyDrowPoint; } |
|
130 |
set { m_MyDrowPoint = value; } |
|
131 |
} |
|
132 |
|
|
133 |
/// <summary> |
|
134 |
/// ツールチップの文字列 |
|
135 |
/// </summary> |
|
136 |
public string ToolTipString |
|
137 |
{ |
|
138 |
get { return m_ToolTipString; } |
|
139 |
set { m_ToolTipString = value; } |
|
140 |
} |
|
141 |
|
|
142 |
/// <summary> |
|
143 |
/// その他保管文字列 |
|
144 |
/// </summary> |
|
145 |
public string ContinerString |
|
146 |
{ |
|
147 |
get { return m_ContinerString; } |
|
148 |
set { m_ContinerString = value; } |
|
149 |
} |
|
150 |
/// <summary> |
|
151 |
/// その他保管コード |
|
152 |
/// </summary> |
|
153 |
public int ContinerCode |
|
154 |
{ |
|
155 |
get { return m_ContinerCode; } |
|
156 |
set { m_ContinerCode = value; } |
|
157 |
} |
|
158 |
|
|
159 |
/// <summary> |
|
160 |
/// フォーカスを受けたフラグ |
|
161 |
/// </summary> |
|
162 |
public bool MyFocusFlg |
|
163 |
{ |
|
164 |
get { return m_MyFocusFlg; } |
|
165 |
set { m_MyFocusFlg = value; } |
|
166 |
} |
|
167 |
#endregion |
|
168 |
|
|
169 |
#region コンストラクタ |
|
170 |
/// <summary> |
|
171 |
/// コンストラクタ |
|
172 |
/// </summary> |
|
173 |
/// <param name="ParentPoint">表示始点</param> |
|
174 |
public MoveTextBox() |
|
175 |
: base() |
|
176 |
{ |
|
177 |
try |
|
178 |
{ |
|
179 |
// サイズ変更クラス初期化 |
|
180 |
m_sizeChanger = new DragAndDropSizeChange(this, this, DragAndDropArea.All, 8); |
|
181 |
// イベント追加 |
|
182 |
this.DragAndDropMoving += new MoveTextBox.DAndDMovingEventHandler(dAndDMove_DAndDMoving); |
|
183 |
// サイズ変更のため常にON |
|
184 |
this.Multiline = true; |
|
185 |
// 親に関係なくIMEをONにする |
|
186 |
this.ImeMode = System.Windows.Forms.ImeMode.On; |
|
187 |
// 自分を最前面へ |
|
188 |
this.BringToFront(); |
|
189 |
} |
|
190 |
catch (System.Exception ex) |
|
191 |
{ |
|
192 |
Console.WriteLine(ex); |
|
193 |
} |
|
194 |
} |
|
195 |
#endregion |
|
196 |
#region デストラクタ |
|
197 |
/// <summary> |
|
198 |
/// デストラクタ |
|
199 |
/// </summary> |
|
200 |
protected override void OnHandleDestroyed(EventArgs e) |
|
201 |
{ |
|
202 |
OnUnloadControl(); |
|
203 |
base.OnHandleDestroyed(e); |
|
204 |
} |
|
205 |
#endregion |
|
206 |
|
|
207 |
#region マウスイベント定義 |
|
208 |
/// <summary> |
|
209 |
/// マウスイベント定義 |
|
210 |
/// </summary> |
|
211 |
public class DragAndDropMovingEventArgs : MouseEventArgs |
|
212 |
{ |
|
213 |
public DragAndDropMovingEventArgs(MouseButtons button, int clicks, int x, int y, int delta, bool cancel) |
|
214 |
: base(button, clicks, x, y, delta) |
|
215 |
{ |
|
216 |
|
|
217 |
this.Cancel = cancel; |
|
218 |
} |
|
219 |
public bool Cancel { set; get; } |
|
220 |
} |
|
221 |
#endregion |
|
222 |
|
|
223 |
#region イベントハンドル |
|
224 |
/// <summary> |
|
225 |
/// イベント定義 |
|
226 |
/// </summary> |
|
227 |
/// <param name="sender"></param> |
|
228 |
/// <param name="e"></param> |
|
229 |
public delegate void DAndDMovingEventHandler(object sender, DragAndDropMovingEventArgs e); |
|
230 |
#endregion |
|
231 |
|
|
232 |
#region イベントエリア |
|
233 |
/// <summary> |
|
234 |
/// マウスの左ボタンが押下され、その後にDrag&Dropされ |
|
235 |
/// コントロールが移動されると判定された時に発生します。 |
|
236 |
/// e.Cancelプロパティにtrueをセットすると移動をキャンセル出来ます。 |
|
237 |
/// </summary> |
|
238 |
public event DAndDMovingEventHandler DragAndDropMoving; |
|
239 |
#endregion |
|
240 |
|
|
241 |
#region サイズ変更エリア |
|
242 |
/// <summary> |
|
243 |
/// サイズ変更エリア |
|
244 |
/// </summary> |
|
245 |
private DragAndDropSizeChange m_sizeChanger; |
|
246 |
#endregion |
|
247 |
|
|
248 |
#region 終了時処理 |
|
249 |
/// <summary> |
|
250 |
/// 終了時処理 |
|
251 |
/// </summary> |
|
252 |
private void OnUnloadControl() |
|
253 |
{ |
|
254 |
try |
|
255 |
{ |
|
256 |
if (m_MyLine != null) |
|
257 |
{ |
|
258 |
m_MyLine.Dispose(); |
|
259 |
m_ParentControl.Parent.Refresh(); |
|
260 |
} |
|
261 |
m_MyLine = null; |
|
262 |
} |
|
263 |
catch (Exception ex) |
|
264 |
{ |
|
265 |
Console.WriteLine(ex); |
|
266 |
} |
|
267 |
} |
|
268 |
#endregion |
|
269 |
|
|
270 |
#region 引き出し線を前面へ表示する |
|
271 |
/// <summary> |
|
272 |
/// 引き出し線を前面へ表示する |
|
273 |
/// </summary> |
|
274 |
public void MyBringToFront() |
|
275 |
{ |
|
276 |
try |
|
277 |
{ |
|
278 |
m_MyLine.Refresh(); |
|
279 |
m_MyLine.BringToFront(); |
|
280 |
|
|
281 |
this.Refresh(); |
|
282 |
this.BringToFront(); |
|
283 |
|
|
284 |
} |
|
285 |
catch (Exception ex) |
|
286 |
{ |
|
287 |
Console.WriteLine(ex); |
|
288 |
} |
|
289 |
} |
|
290 |
#endregion |
|
291 |
|
|
292 |
#region MouseHoverイベント |
|
293 |
/// <summary> |
|
294 |
/// マウスがコントロール上へ来た場合再描画 |
|
295 |
/// </summary> |
|
296 |
/// <param name="e"></param> |
|
297 |
protected override void OnMouseHover(EventArgs e) |
|
298 |
{ |
|
299 |
// ベースの処理 |
|
300 |
base.OnMouseHover(e); |
|
301 |
// MoveTextBox前面表示 |
|
302 |
MyBringToFront(); |
|
303 |
} |
|
304 |
#endregion |
|
305 |
|
|
306 |
#region OnMouseLeaveイベント |
|
307 |
/// <summary> |
|
308 |
/// マウスがコントロールより去った場合 |
|
309 |
/// </summary> |
|
310 |
/// <param name="e"></param> |
|
311 |
protected override void OnMouseLeave(EventArgs e) |
|
312 |
{ |
|
313 |
// ツールチップの非表示 |
|
314 |
m_MyToolTip.Active = false; |
|
315 |
// ツールチップの表示 |
|
316 |
m_MyToolTip.Active = true; |
|
317 |
|
|
318 |
base.OnMouseLeave(e); |
|
319 |
} |
|
320 |
#endregion |
|
321 |
|
|
322 |
#region 線を描く |
|
323 |
/// <summary> |
|
324 |
/// 引き出し線を描く |
|
325 |
/// </summary> |
|
326 |
private void DrowLeadLine() |
|
327 |
{ |
|
328 |
try |
|
329 |
{ |
|
330 |
// 線を描く |
|
331 |
m_MyLine = new LineShape(); |
|
332 |
m_MyLine.StartPoint = new Point(m_ParentPoint.X+(m_ParentSize.Width/2), |
|
333 |
m_ParentPoint.Y + (m_ParentSize.Height / 2)); |
|
334 |
m_MyLine.EndPoint = this.Location; |
|
335 |
m_MyLine.BorderColor = m_MyDrowColor; |
|
336 |
m_MyLine.BorderWidth = 2; |
|
337 |
m_ParentControl.Shapes.AddRange(new Shape[] { this.m_MyLine }); |
|
338 |
m_MyLine.BringToFront(); |
|
339 |
} |
|
340 |
catch (Exception ex) |
|
341 |
{ |
|
342 |
Console.WriteLine(ex); |
|
343 |
} |
|
344 |
} |
|
345 |
#endregion |
|
346 |
|
|
347 |
#region OnParentChangedイベント |
|
348 |
/// <summary> |
|
349 |
/// フォームに登録された時点の処理 |
|
350 |
/// </summary> |
|
351 |
/// <param name="e"></param> |
|
352 |
protected override void OnParentChanged(EventArgs e) |
|
353 |
{ |
|
354 |
try |
|
355 |
{ |
|
356 |
// 親を取得する |
|
357 |
m_ParentControl = (ShapeContainer)this.Parent; |
|
358 |
|
|
359 |
// 自コントロールのプロパティ |
|
360 |
this.BackColor = m_MyDrowColor; |
|
361 |
this.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
362 |
|
|
363 |
// 自分の描画位置 |
|
364 |
this.Location = m_MyDrowPoint; |
|
365 |
if (m_MyDrowPoint.X == 0 && m_MyDrowPoint.Y == 0) |
|
366 |
{ |
|
367 |
this.Location = new Point(m_ParentPoint.X + 10, m_ParentPoint.Y + 10); |
|
368 |
} |
|
369 |
|
|
370 |
//ToolTipを作成する |
|
371 |
m_MyToolTip = new ToolTip(); |
|
372 |
//ToolTipの設定を行う |
|
373 |
//ToolTipが表示されるまでの時間 |
|
374 |
m_MyToolTip.InitialDelay = 1000; |
|
375 |
//ToolTipが表示されている時に、別のToolTipを表示するまでの時間 |
|
376 |
m_MyToolTip.ReshowDelay = 1000; |
|
377 |
//ToolTipを表示する時間 |
|
378 |
m_MyToolTip.AutoPopDelay = 10000; |
|
379 |
//フォームがアクティブでない時でもToolTipを表示する |
|
380 |
m_MyToolTip.ShowAlways = true; |
|
381 |
//ToolTip文字設定 |
|
382 |
m_MyToolTip.SetToolTip(this, m_ToolTipString); |
|
383 |
|
|
384 |
// 線を描く |
|
385 |
DrowLeadLine(); |
|
386 |
} |
|
387 |
catch (Exception ex) |
|
388 |
{ |
|
389 |
Console.WriteLine(ex); |
|
390 |
} |
|
391 |
} |
|
392 |
#endregion |
|
393 |
|
|
394 |
#region フォーカスを受け取る |
|
395 |
/// <summary> |
|
396 |
/// フォーカスを受け取る |
|
397 |
/// </summary> |
|
398 |
/// <param name="e"></param> |
|
399 |
protected override void OnEnter(EventArgs e) |
|
400 |
{ |
|
401 |
// ベース処理 |
|
402 |
base.OnEnter(e); |
|
403 |
|
|
404 |
// 前面表示 |
|
405 |
MyBringToFront(); |
|
406 |
// 親コントロール再描画 |
|
407 |
m_ParentControl.Parent.Refresh(); |
|
408 |
|
|
409 |
foreach (Control wrkCtrl in this.Parent.Controls) |
|
410 |
{ |
|
411 |
// 自分と同じコントロールだけ処理する |
|
412 |
if (!wrkCtrl.GetType().Equals(typeof(MoveTextBox))) continue; |
|
413 |
// 自分以外はフラグをOff |
|
414 |
if (wrkCtrl != this) |
|
415 |
{ |
|
416 |
((MoveTextBox)wrkCtrl).MyFocusFlg = false; |
|
417 |
continue; |
|
418 |
} |
|
419 |
// 自分はフラグをOnにする |
|
420 |
((MoveTextBox)wrkCtrl).MyFocusFlg = true; |
|
421 |
} |
|
422 |
} |
|
423 |
#endregion |
|
424 |
|
|
425 |
#region override for WndProc |
|
426 |
/// <summary> |
|
427 |
/// WndProcのオーバーライド |
|
428 |
/// </summary> |
|
429 |
/// <param name="m"></param> |
|
430 |
protected override void WndProc(ref Message m) |
|
431 |
{ |
|
432 |
switch (m.Msg) |
|
433 |
{ |
|
434 |
case WM_LBUTTONDOWN: |
|
435 |
selectionStart = this.SelectionStart; |
|
436 |
selectionLength = this.SelectionLength; |
|
437 |
break; |
|
438 |
} |
|
439 |
|
|
440 |
base.WndProc(ref m); |
|
441 |
} |
|
442 |
#endregion |
|
443 |
|
|
444 |
#region マウスダウン |
|
445 |
/// <summary> |
|
446 |
/// マウスダウン |
|
447 |
/// </summary> |
|
448 |
/// <param name="e"></param> |
|
449 |
protected override void OnMouseDown(MouseEventArgs e) |
|
450 |
{ |
|
451 |
try |
|
452 |
{ |
|
453 |
if (e.Button == MouseButtons.Left) |
|
454 |
{ |
|
455 |
// マウスクリックポイント |
|
456 |
mouseDownPoint = e.Location; |
|
457 |
bool flag = true; |
|
458 |
int charHeight = this.Font.Height; |
|
459 |
|
|
460 |
// サイズ変更領域の判定 |
|
461 |
for (int i = 0; i < this.Lines.Length; i++) |
|
462 |
{ |
|
463 |
Point point = new Point(0, i * charHeight); |
|
464 |
Size size = TextRenderer.MeasureText(this.Lines[i], this.Font); |
|
465 |
Rectangle rect = new Rectangle(point, size); |
|
466 |
|
|
467 |
if (rect.Contains(e.Location)) |
|
468 |
{ |
|
469 |
flag = false; |
|
470 |
break; |
|
471 |
} |
|
472 |
} |
|
473 |
|
|
474 |
DragAndDropMovingEventArgs args = new DragAndDropMovingEventArgs(e.Button, e.Clicks, e.X, e.Y, e.Delta, false); |
|
475 |
|
|
476 |
if (DragAndDropMoving != null && flag) |
|
477 |
{ |
|
478 |
DragAndDropMoving(this, args); |
|
479 |
|
|
480 |
if (args.Cancel) flag = false; |
|
481 |
} |
|
482 |
|
|
483 |
this.dAndDMoveFlag = flag; |
|
484 |
this.isMoved = false; |
|
485 |
} |
|
486 |
|
|
487 |
base.OnMouseDown(e); |
|
488 |
} |
|
489 |
catch (Exception ex) |
|
490 |
{ |
|
491 |
Console.WriteLine(ex); |
|
492 |
} |
|
493 |
} |
|
494 |
#endregion |
|
495 |
|
|
496 |
#region マウスムーブ |
|
497 |
/// <summary> |
|
498 |
/// マウスムーブ |
|
499 |
/// </summary> |
|
500 |
/// <param name="e"></param> |
|
501 |
protected override void OnMouseMove(MouseEventArgs e) |
|
502 |
{ |
|
503 |
try |
|
504 |
{ |
|
505 |
if (dAndDMoveFlag) |
|
506 |
{ |
|
507 |
//移動処理 |
|
508 |
this.Left += e.X - mouseDownPoint.X; |
|
509 |
this.Top += e.Y - mouseDownPoint.Y; |
|
510 |
|
|
511 |
// 線も同時に移動する |
|
512 |
int LineX = this.Left; |
|
513 |
int LineY = this.Top; |
|
514 |
LineX += e.X - mouseDownPoint.X; |
|
515 |
LineY += e.Y - mouseDownPoint.Y; |
|
516 |
m_MyLine.EndPoint = new Point(LineX, LineY); |
|
517 |
|
|
518 |
// 線の前面化 |
|
519 |
MyBringToFront(); |
|
520 |
// 親コントロール再描画 |
|
521 |
m_ParentControl.Parent.Refresh(); |
|
522 |
|
|
523 |
isMoved = true; |
|
524 |
} |
|
525 |
|
|
526 |
base.OnMouseMove(e); |
|
527 |
} |
|
528 |
catch (Exception ex) |
|
529 |
{ |
|
530 |
Console.WriteLine(ex); |
|
531 |
} |
|
532 |
} |
|
533 |
#endregion |
|
534 |
|
|
535 |
#region マウスアップ |
|
536 |
/// <summary> |
|
537 |
/// マウスアップ |
|
538 |
/// </summary> |
|
539 |
/// <param name="mevent"></param> |
|
540 |
protected override void OnMouseUp(MouseEventArgs mevent) |
|
541 |
{ |
|
542 |
try |
|
543 |
{ |
|
544 |
if (dAndDMoveFlag && isMoved) |
|
545 |
{ |
|
546 |
this.Select(selectionStart, selectionLength); |
|
547 |
} |
|
548 |
|
|
549 |
dAndDMoveFlag = false; |
|
550 |
isMoved = false; |
|
551 |
|
|
552 |
if (m_MyLine.EndPoint != this.Location) |
|
553 |
{ |
|
554 |
// 線も同時に移動する |
|
555 |
m_MyLine.EndPoint = this.Location; |
|
556 |
|
|
557 |
// 線の前面化 |
|
558 |
MyBringToFront(); |
|
559 |
// 親コントロール再描画 |
|
560 |
m_ParentControl.Parent.Refresh(); |
|
561 |
} |
|
562 |
|
|
563 |
base.OnMouseUp(mevent); |
|
564 |
} |
|
565 |
catch (Exception ex) |
|
566 |
{ |
|
567 |
Console.WriteLine(ex); |
|
568 |
} |
|
569 |
} |
|
570 |
#endregion |
|
571 |
|
|
572 |
#region サイズ変更確認 |
|
573 |
/// <summary> |
|
574 |
/// サイズ変更確認 |
|
575 |
/// </summary> |
|
576 |
/// <param name="sender"></param> |
|
577 |
/// <param name="e"></param> |
|
578 |
private void dAndDMove_DAndDMoving(object sender, MoveTextBox.DragAndDropMovingEventArgs e) |
|
579 |
{ |
|
580 |
e.Cancel = m_sizeChanger.ContainsSizeChangeArea(e.Location); |
|
581 |
} |
|
582 |
#endregion |
|
583 |
|
|
584 |
} |
|
585 |
} |
branches/src/ProcessManagement/ProcessManagement/Forms/CustomControls/DataGridViewEX.cs | ||
---|---|---|
6 | 6 |
using System.Text; |
7 | 7 |
using System.Windows.Forms; |
8 | 8 |
|
9 |
using Microsoft.VisualBasic.PowerPacks; |
|
9 |
//using Microsoft.VisualBasic.PowerPacks;
|
|
10 | 10 |
|
11 | 11 |
//*---------------------------- ?g??DataGridView?R?[?h ------------------------* |
12 | 12 |
// 2015/07/14 Ver1.0.0.0 Create Source |
... | ... | |
60 | 60 |
{ |
61 | 61 |
// ?R?????g??t?H?[?J?X???????????????? |
62 | 62 |
Form frmParent = FindForm(); |
63 |
if (frmParent.ActiveControl.GetType().Equals(typeof(MoveTextBox)) |
|
64 |
|| frmParent.ActiveControl.GetType().Equals(typeof(ShapeContainer)) |
|
65 |
|| frmParent.ActiveControl.GetType().Equals(typeof(LineShape))) return false; |
|
63 |
//if (frmParent.ActiveControl.GetType().Equals(typeof(MoveTextBox))
|
|
64 |
// || frmParent.ActiveControl.GetType().Equals(typeof(ShapeContainer))
|
|
65 |
// || frmParent.ActiveControl.GetType().Equals(typeof(LineShape))) return false;
|
|
66 | 66 |
|
67 | 67 |
//Enter?L?[????????????ATab?L?[??????????????? |
68 | 68 |
if ((keyData & Keys.KeyCode) == Keys.Enter) |
... | ... | |
85 | 85 |
{ |
86 | 86 |
// ?R?????g??t?H?[?J?X???????????????? |
87 | 87 |
Form frmParent = FindForm(); |
88 |
if (frmParent.ActiveControl.GetType().Equals(typeof(MoveTextBox)) |
|
89 |
|| frmParent.ActiveControl.GetType().Equals(typeof(ShapeContainer)) |
|
90 |
|| frmParent.ActiveControl.GetType().Equals(typeof(LineShape))) return false; |
|
88 |
//if (frmParent.ActiveControl.GetType().Equals(typeof(MoveTextBox))
|
|
89 |
// || frmParent.ActiveControl.GetType().Equals(typeof(ShapeContainer))
|
|
90 |
// || frmParent.ActiveControl.GetType().Equals(typeof(LineShape))) return false;
|
|
91 | 91 |
|
92 | 92 |
//Enter?L?[????????????ATab?L?[??????????????? |
93 | 93 |
if (e.KeyCode == Keys.Enter) |
branches/src/ProcessManagement/ProcessManagement/Forms/DataEntry/ConstructionPersonList/FrmConstructionPersonList.designer.cs | ||
---|---|---|
1 |
namespace ProcessManagement.Forms.DataEntry |
|
2 |
{ |
|
3 |
partial class FrmConstructionPersonList |
|
4 |
{ |
|
5 |
/// <summary> |
|
6 |
/// 必要なデザイナ変数です。 |
|
7 |
/// </summary> |
|
8 |
private System.ComponentModel.IContainer components = null; |
|
9 |
|
|
10 |
/// <summary> |
|
11 |
/// 使用中のリソースをすべてクリーンアップします。 |
|
12 |
/// </summary> |
|
13 |
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param> |
|
14 |
protected override void Dispose(bool disposing) |
|
15 |
{ |
|
16 |
if (disposing && (components != null)) |
|
17 |
{ |
|
18 |
components.Dispose(); |
|
19 |
} |
|
20 |
base.Dispose(disposing); |
|
21 |
} |
|
22 |
|
|
23 |
#region Windows フォーム デザイナで生成されたコード |
|
24 |
|
|
25 |
/// <summary> |
|
26 |
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を |
|
27 |
/// コード エディタで変更しないでください。 |
|
28 |
/// </summary> |
|
29 |
private void InitializeComponent() |
|
30 |
{ |
|
31 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
32 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
33 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
34 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
35 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
36 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
37 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
38 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
39 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
40 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
41 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
42 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
43 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
44 |
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle(); |
|
45 |
this.btnEnd = new System.Windows.Forms.Button(); |
|
46 |
this.label1 = new System.Windows.Forms.Label(); |
|
47 |
this.groupBox1 = new System.Windows.Forms.GroupBox(); |
|
48 |
this.pnlPayroll = new System.Windows.Forms.Panel(); |
|
49 |
this.label54 = new System.Windows.Forms.Label(); |
|
50 |
this.label55 = new System.Windows.Forms.Label(); |
|
51 |
this.label56 = new System.Windows.Forms.Label(); |
|
52 |
this.label53 = new System.Windows.Forms.Label(); |
|
53 |
this.label52 = new System.Windows.Forms.Label(); |
|
54 |
this.label50 = new System.Windows.Forms.Label(); |
|
55 |
this.label51 = new System.Windows.Forms.Label(); |
|
56 |
this.label48 = new System.Windows.Forms.Label(); |
|
57 |
this.label49 = new System.Windows.Forms.Label(); |
|
58 |
this.label46 = new System.Windows.Forms.Label(); |
|
59 |
this.label47 = new System.Windows.Forms.Label(); |
|
60 |
this.label40 = new System.Windows.Forms.Label(); |
|
61 |
this.label41 = new System.Windows.Forms.Label(); |
|
62 |
this.label42 = new System.Windows.Forms.Label(); |
|
63 |
this.label43 = new System.Windows.Forms.Label(); |
|
64 |
this.label44 = new System.Windows.Forms.Label(); |
|
65 |
this.label45 = new System.Windows.Forms.Label(); |
|
66 |
this.label26 = new System.Windows.Forms.Label(); |
|
67 |
this.label30 = new System.Windows.Forms.Label(); |
|
68 |
this.label33 = new System.Windows.Forms.Label(); |
|
69 |
this.label34 = new System.Windows.Forms.Label(); |
|
70 |
this.label38 = new System.Windows.Forms.Label(); |
|
71 |
this.label39 = new System.Windows.Forms.Label(); |
|
72 |
this.label35 = new System.Windows.Forms.Label(); |
|
73 |
this.label36 = new System.Windows.Forms.Label(); |
|
74 |
this.label37 = new System.Windows.Forms.Label(); |
|
75 |
this.label31 = new System.Windows.Forms.Label(); |
|
76 |
this.label32 = new System.Windows.Forms.Label(); |
|
77 |
this.label28 = new System.Windows.Forms.Label(); |
|
78 |
this.label29 = new System.Windows.Forms.Label(); |
|
79 |
this.label27 = new System.Windows.Forms.Label(); |
|
80 |
this.label24 = new System.Windows.Forms.Label(); |
|
81 |
this.label25 = new System.Windows.Forms.Label(); |
|
82 |
this.label8 = new System.Windows.Forms.Label(); |
|
83 |
this.label23 = new System.Windows.Forms.Label(); |
|
84 |
this.label21 = new System.Windows.Forms.Label(); |
|
85 |
this.label22 = new System.Windows.Forms.Label(); |
|
86 |
this.label20 = new System.Windows.Forms.Label(); |
|
87 |
this.label13 = new System.Windows.Forms.Label(); |
|
88 |
this.label10 = new System.Windows.Forms.Label(); |
|
89 |
this.label16 = new System.Windows.Forms.Label(); |
|
90 |
this.label14 = new System.Windows.Forms.Label(); |
|
91 |
this.label17 = new System.Windows.Forms.Label(); |
|
92 |
this.label15 = new System.Windows.Forms.Label(); |
|
93 |
this.label11 = new System.Windows.Forms.Label(); |
|
94 |
this.label9 = new System.Windows.Forms.Label(); |
|
95 |
this.cmbDepartment = new System.Windows.Forms.ComboBox(); |
|
96 |
this.label5 = new System.Windows.Forms.Label(); |
|
97 |
this.label2 = new System.Windows.Forms.Label(); |
|
98 |
this.numUDConstPro = new System.Windows.Forms.NumericUpDown(); |
|
99 |
this.cmbConstructionPerson = new System.Windows.Forms.ComboBox(); |
|
100 |
this.label3 = new System.Windows.Forms.Label(); |
|
101 |
this.label4 = new System.Windows.Forms.Label(); |
|
102 |
this.label7 = new System.Windows.Forms.Label(); |
|
103 |
this.lblCellTotal = new System.Windows.Forms.Label(); |
|
104 |
this.dgvMaster = new ProcessManagement.Forms.CustomControls.DataGridViewEX(); |
|
105 |
this.ProgressBar = new System.Windows.Forms.ProgressBar(); |
|
106 |
this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
107 |
this.Column14 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
108 |
this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
109 |
this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
110 |
this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
111 |
this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
112 |
this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
113 |
this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
114 |
this.Column9 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
115 |
this.Column10 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
116 |
this.Column12 = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
|
117 |
this.groupBox1.SuspendLayout(); |
|
118 |
this.pnlPayroll.SuspendLayout(); |
|
119 |
((System.ComponentModel.ISupportInitialize)(this.numUDConstPro)).BeginInit(); |
|
120 |
((System.ComponentModel.ISupportInitialize)(this.dgvMaster)).BeginInit(); |
|
121 |
this.SuspendLayout(); |
|
122 |
// |
|
123 |
// btnEnd |
|
124 |
// |
|
125 |
this.btnEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
|
126 |
this.btnEnd.BackColor = System.Drawing.Color.Blue; |
|
127 |
this.btnEnd.ForeColor = System.Drawing.Color.White; |
|
128 |
this.btnEnd.Location = new System.Drawing.Point(1210, 619); |
|
129 |
this.btnEnd.Name = "btnEnd"; |
|
130 |
this.btnEnd.Size = new System.Drawing.Size(120, 30); |
|
131 |
this.btnEnd.TabIndex = 8; |
|
132 |
this.btnEnd.Text = "終 了"; |
|
133 |
this.btnEnd.UseVisualStyleBackColor = false; |
|
134 |
this.btnEnd.Click += new System.EventHandler(this.btnEnd_Click); |
|
135 |
// |
|
136 |
// label1 |
|
137 |
// |
|
138 |
this.label1.Anchor = System.Windows.Forms.AnchorStyles.Top; |
|
139 |
this.label1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255))))); |
|
140 |
this.label1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
141 |
this.label1.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
142 |
this.label1.ForeColor = System.Drawing.Color.Black; |
|
143 |
this.label1.Location = new System.Drawing.Point(420, 10); |
|
144 |
this.label1.Name = "label1"; |
|
145 |
this.label1.Size = new System.Drawing.Size(500, 20); |
|
146 |
this.label1.TabIndex = 6; |
|
147 |
this.label1.Text = "担 当 者 別 台 帳 一 覧"; |
|
148 |
this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
149 |
// |
|
150 |
// groupBox1 |
|
151 |
// |
|
152 |
this.groupBox1.Anchor = System.Windows.Forms.AnchorStyles.Top; |
|
153 |
this.groupBox1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255))))); |
|
154 |
this.groupBox1.Controls.Add(this.pnlPayroll); |
|
155 |
this.groupBox1.Controls.Add(this.cmbDepartment); |
|
156 |
this.groupBox1.Controls.Add(this.label5); |
|
157 |
this.groupBox1.Controls.Add(this.label2); |
|
158 |
this.groupBox1.Controls.Add(this.numUDConstPro); |
|
159 |
this.groupBox1.Controls.Add(this.cmbConstructionPerson); |
|
160 |
this.groupBox1.Controls.Add(this.label3); |
|
161 |
this.groupBox1.Controls.Add(this.label4); |
|
162 |
this.groupBox1.Controls.Add(this.label7); |
|
163 |
this.groupBox1.ForeColor = System.Drawing.Color.White; |
|
164 |
this.groupBox1.Location = new System.Drawing.Point(5, 40); |
|
165 |
this.groupBox1.Name = "groupBox1"; |
|
166 |
this.groupBox1.Size = new System.Drawing.Size(1330, 186); |
|
167 |
this.groupBox1.TabIndex = 0; |
|
168 |
this.groupBox1.TabStop = false; |
|
169 |
// |
|
170 |
// pnlPayroll |
|
171 |
// |
|
172 |
this.pnlPayroll.BackColor = System.Drawing.Color.Yellow; |
|
173 |
this.pnlPayroll.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
174 |
this.pnlPayroll.Controls.Add(this.label54); |
|
175 |
this.pnlPayroll.Controls.Add(this.label55); |
|
176 |
this.pnlPayroll.Controls.Add(this.label56); |
|
177 |
this.pnlPayroll.Controls.Add(this.label53); |
|
178 |
this.pnlPayroll.Controls.Add(this.label52); |
|
179 |
this.pnlPayroll.Controls.Add(this.label50); |
|
180 |
this.pnlPayroll.Controls.Add(this.label51); |
|
181 |
this.pnlPayroll.Controls.Add(this.label48); |
|
182 |
this.pnlPayroll.Controls.Add(this.label49); |
|
183 |
this.pnlPayroll.Controls.Add(this.label46); |
|
184 |
this.pnlPayroll.Controls.Add(this.label47); |
|
185 |
this.pnlPayroll.Controls.Add(this.label40); |
|
186 |
this.pnlPayroll.Controls.Add(this.label41); |
|
187 |
this.pnlPayroll.Controls.Add(this.label42); |
|
188 |
this.pnlPayroll.Controls.Add(this.label43); |
|
189 |
this.pnlPayroll.Controls.Add(this.label44); |
|
190 |
this.pnlPayroll.Controls.Add(this.label45); |
|
191 |
this.pnlPayroll.Controls.Add(this.label26); |
|
192 |
this.pnlPayroll.Controls.Add(this.label30); |
|
193 |
this.pnlPayroll.Controls.Add(this.label33); |
|
194 |
this.pnlPayroll.Controls.Add(this.label34); |
|
195 |
this.pnlPayroll.Controls.Add(this.label38); |
|
196 |
this.pnlPayroll.Controls.Add(this.label39); |
|
197 |
this.pnlPayroll.Controls.Add(this.label35); |
|
198 |
this.pnlPayroll.Controls.Add(this.label36); |
|
199 |
this.pnlPayroll.Controls.Add(this.label37); |
|
200 |
this.pnlPayroll.Controls.Add(this.label31); |
|
201 |
this.pnlPayroll.Controls.Add(this.label32); |
|
202 |
this.pnlPayroll.Controls.Add(this.label28); |
|
203 |
this.pnlPayroll.Controls.Add(this.label29); |
|
204 |
this.pnlPayroll.Controls.Add(this.label27); |
|
205 |
this.pnlPayroll.Controls.Add(this.label24); |
|
206 |
this.pnlPayroll.Controls.Add(this.label25); |
|
207 |
this.pnlPayroll.Controls.Add(this.label8); |
|
208 |
this.pnlPayroll.Controls.Add(this.label23); |
|
209 |
this.pnlPayroll.Controls.Add(this.label21); |
|
210 |
this.pnlPayroll.Controls.Add(this.label22); |
|
211 |
this.pnlPayroll.Controls.Add(this.label20); |
|
212 |
this.pnlPayroll.Controls.Add(this.label13); |
|
213 |
this.pnlPayroll.Controls.Add(this.label10); |
|
214 |
this.pnlPayroll.Controls.Add(this.label16); |
|
215 |
this.pnlPayroll.Controls.Add(this.label14); |
|
216 |
this.pnlPayroll.Controls.Add(this.label17); |
|
217 |
this.pnlPayroll.Controls.Add(this.label15); |
|
218 |
this.pnlPayroll.Controls.Add(this.label11); |
|
219 |
this.pnlPayroll.Controls.Add(this.label9); |
|
220 |
this.pnlPayroll.Location = new System.Drawing.Point(5, 44); |
|
221 |
this.pnlPayroll.Name = "pnlPayroll"; |
|
222 |
this.pnlPayroll.Size = new System.Drawing.Size(1320, 136); |
|
223 |
this.pnlPayroll.TabIndex = 45; |
|
224 |
this.pnlPayroll.Visible = false; |
|
225 |
// |
|
226 |
// label54 |
|
227 |
// |
|
228 |
this.label54.BackColor = System.Drawing.Color.White; |
|
229 |
this.label54.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
230 |
this.label54.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
231 |
this.label54.ForeColor = System.Drawing.Color.Black; |
|
232 |
this.label54.Location = new System.Drawing.Point(1160, 81); |
|
233 |
this.label54.Name = "label54"; |
|
234 |
this.label54.Size = new System.Drawing.Size(140, 25); |
|
235 |
this.label54.TabIndex = 85; |
|
236 |
this.label54.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
237 |
// |
|
238 |
// label55 |
|
239 |
// |
|
240 |
this.label55.BackColor = System.Drawing.Color.DodgerBlue; |
|
241 |
this.label55.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
242 |
this.label55.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
243 |
this.label55.ForeColor = System.Drawing.Color.Black; |
|
244 |
this.label55.Location = new System.Drawing.Point(1040, 81); |
|
245 |
this.label55.Name = "label55"; |
|
246 |
this.label55.Size = new System.Drawing.Size(120, 25); |
|
247 |
this.label55.TabIndex = 84; |
|
248 |
this.label55.Text = "人件費差額合計"; |
|
249 |
this.label55.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
250 |
// |
|
251 |
// label56 |
|
252 |
// |
|
253 |
this.label56.AutoSize = true; |
|
254 |
this.label56.BackColor = System.Drawing.Color.Yellow; |
|
255 |
this.label56.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
256 |
this.label56.ForeColor = System.Drawing.Color.Black; |
|
257 |
this.label56.Location = new System.Drawing.Point(998, 84); |
|
258 |
this.label56.Name = "label56"; |
|
259 |
this.label56.Size = new System.Drawing.Size(30, 19); |
|
260 |
this.label56.TabIndex = 83; |
|
261 |
this.label56.Text = "="; |
|
262 |
this.label56.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
263 |
// |
|
264 |
// label53 |
|
265 |
// |
|
266 |
this.label53.AutoSize = true; |
|
267 |
this.label53.BackColor = System.Drawing.Color.Yellow; |
|
268 |
this.label53.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
269 |
this.label53.ForeColor = System.Drawing.Color.Black; |
|
270 |
this.label53.Location = new System.Drawing.Point(684, 84); |
|
271 |
this.label53.Name = "label53"; |
|
272 |
this.label53.Size = new System.Drawing.Size(30, 19); |
|
273 |
this.label53.TabIndex = 82; |
|
274 |
this.label53.Text = "+"; |
|
275 |
this.label53.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
276 |
// |
|
277 |
// label52 |
|
278 |
// |
|
279 |
this.label52.AutoSize = true; |
|
280 |
this.label52.BackColor = System.Drawing.Color.Yellow; |
|
281 |
this.label52.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
282 |
this.label52.ForeColor = System.Drawing.Color.Black; |
|
283 |
this.label52.Location = new System.Drawing.Point(370, 84); |
|
284 |
this.label52.Name = "label52"; |
|
285 |
this.label52.Size = new System.Drawing.Size(30, 19); |
|
286 |
this.label52.TabIndex = 81; |
|
287 |
this.label52.Text = "+"; |
|
288 |
this.label52.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
289 |
// |
|
290 |
// label50 |
|
291 |
// |
|
292 |
this.label50.BackColor = System.Drawing.Color.White; |
|
293 |
this.label50.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
294 |
this.label50.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
295 |
this.label50.ForeColor = System.Drawing.Color.Black; |
|
296 |
this.label50.Location = new System.Drawing.Point(846, 81); |
|
297 |
this.label50.Name = "label50"; |
|
298 |
this.label50.Size = new System.Drawing.Size(140, 25); |
|
299 |
this.label50.TabIndex = 80; |
|
300 |
this.label50.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
301 |
// |
|
302 |
// label51 |
|
303 |
// |
|
304 |
this.label51.BackColor = System.Drawing.Color.MistyRose; |
|
305 |
this.label51.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
306 |
this.label51.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
307 |
this.label51.ForeColor = System.Drawing.Color.Black; |
|
308 |
this.label51.Location = new System.Drawing.Point(726, 81); |
|
309 |
this.label51.Name = "label51"; |
|
310 |
this.label51.Size = new System.Drawing.Size(120, 25); |
|
311 |
this.label51.TabIndex = 79; |
|
312 |
this.label51.Text = "指導員差額金額"; |
|
313 |
this.label51.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
314 |
// |
|
315 |
// label48 |
|
316 |
// |
|
317 |
this.label48.BackColor = System.Drawing.Color.White; |
|
318 |
this.label48.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
319 |
this.label48.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
320 |
this.label48.ForeColor = System.Drawing.Color.Black; |
|
321 |
this.label48.Location = new System.Drawing.Point(532, 81); |
|
322 |
this.label48.Name = "label48"; |
|
323 |
this.label48.Size = new System.Drawing.Size(140, 25); |
|
324 |
this.label48.TabIndex = 78; |
|
325 |
this.label48.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
326 |
// |
|
327 |
// label49 |
|
328 |
// |
|
329 |
this.label49.BackColor = System.Drawing.Color.Beige; |
|
330 |
this.label49.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
331 |
this.label49.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
332 |
this.label49.ForeColor = System.Drawing.Color.Black; |
|
333 |
this.label49.Location = new System.Drawing.Point(412, 81); |
|
334 |
this.label49.Name = "label49"; |
|
335 |
this.label49.Size = new System.Drawing.Size(120, 25); |
|
336 |
this.label49.TabIndex = 77; |
|
337 |
this.label49.Text = "副担当者差額金額"; |
|
338 |
this.label49.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
339 |
// |
|
340 |
// label46 |
|
341 |
// |
|
342 |
this.label46.BackColor = System.Drawing.Color.White; |
|
343 |
this.label46.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
344 |
this.label46.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
345 |
this.label46.ForeColor = System.Drawing.Color.Black; |
|
346 |
this.label46.Location = new System.Drawing.Point(218, 81); |
|
347 |
this.label46.Name = "label46"; |
|
348 |
this.label46.Size = new System.Drawing.Size(140, 25); |
|
349 |
this.label46.TabIndex = 76; |
|
350 |
this.label46.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
351 |
// |
|
352 |
// label47 |
|
353 |
// |
|
354 |
this.label47.BackColor = System.Drawing.Color.MediumAquamarine; |
|
355 |
this.label47.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
356 |
this.label47.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
357 |
this.label47.ForeColor = System.Drawing.Color.Black; |
|
358 |
this.label47.Location = new System.Drawing.Point(98, 81); |
|
359 |
this.label47.Name = "label47"; |
|
360 |
this.label47.Size = new System.Drawing.Size(120, 25); |
|
361 |
this.label47.TabIndex = 75; |
|
362 |
this.label47.Text = "担当者差額金額"; |
|
363 |
this.label47.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
364 |
// |
|
365 |
// label40 |
|
366 |
// |
|
367 |
this.label40.AutoSize = true; |
|
368 |
this.label40.BackColor = System.Drawing.Color.Yellow; |
|
369 |
this.label40.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
370 |
this.label40.ForeColor = System.Drawing.Color.Black; |
|
371 |
this.label40.Location = new System.Drawing.Point(370, 59); |
|
372 |
this.label40.Name = "label40"; |
|
373 |
this.label40.Size = new System.Drawing.Size(30, 19); |
|
374 |
this.label40.TabIndex = 74; |
|
375 |
this.label40.Text = "-"; |
|
376 |
this.label40.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
377 |
// |
|
378 |
// label41 |
|
379 |
// |
|
380 |
this.label41.BackColor = System.Drawing.Color.MistyRose; |
|
381 |
this.label41.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
382 |
this.label41.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
383 |
this.label41.ForeColor = System.Drawing.Color.Black; |
|
384 |
this.label41.Location = new System.Drawing.Point(412, 56); |
|
385 |
this.label41.Name = "label41"; |
|
386 |
this.label41.Size = new System.Drawing.Size(120, 25); |
|
387 |
this.label41.TabIndex = 72; |
|
388 |
this.label41.Text = "指導員経過給与"; |
|
389 |
this.label41.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
390 |
// |
|
391 |
// label42 |
|
392 |
// |
|
393 |
this.label42.BackColor = System.Drawing.Color.White; |
|
394 |
this.label42.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
395 |
this.label42.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
396 |
this.label42.ForeColor = System.Drawing.Color.Black; |
|
397 |
this.label42.Location = new System.Drawing.Point(532, 56); |
|
398 |
this.label42.Name = "label42"; |
|
399 |
this.label42.Size = new System.Drawing.Size(140, 25); |
|
400 |
this.label42.TabIndex = 73; |
|
401 |
this.label42.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
402 |
// |
|
403 |
// label43 |
|
404 |
// |
|
405 |
this.label43.BackColor = System.Drawing.Color.White; |
|
406 |
this.label43.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
407 |
this.label43.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
408 |
this.label43.ForeColor = System.Drawing.Color.Black; |
|
409 |
this.label43.Location = new System.Drawing.Point(846, 56); |
|
410 |
this.label43.Name = "label43"; |
|
411 |
this.label43.Size = new System.Drawing.Size(140, 25); |
|
412 |
this.label43.TabIndex = 71; |
|
413 |
this.label43.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
414 |
// |
|
415 |
// label44 |
|
416 |
// |
|
417 |
this.label44.BackColor = System.Drawing.Color.MistyRose; |
|
418 |
this.label44.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
419 |
this.label44.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
420 |
this.label44.ForeColor = System.Drawing.Color.Black; |
|
421 |
this.label44.Location = new System.Drawing.Point(726, 56); |
|
422 |
this.label44.Name = "label44"; |
|
423 |
this.label44.Size = new System.Drawing.Size(120, 25); |
|
424 |
this.label44.TabIndex = 70; |
|
425 |
this.label44.Text = "指導員差額金額"; |
|
426 |
this.label44.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
427 |
// |
|
428 |
// label45 |
|
429 |
// |
|
430 |
this.label45.AutoSize = true; |
|
431 |
this.label45.BackColor = System.Drawing.Color.Yellow; |
|
432 |
this.label45.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
433 |
this.label45.ForeColor = System.Drawing.Color.Black; |
|
434 |
this.label45.Location = new System.Drawing.Point(684, 59); |
|
435 |
this.label45.Name = "label45"; |
|
436 |
this.label45.Size = new System.Drawing.Size(30, 19); |
|
437 |
this.label45.TabIndex = 69; |
|
438 |
this.label45.Text = "="; |
|
439 |
this.label45.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
440 |
// |
|
441 |
// label26 |
|
442 |
// |
|
443 |
this.label26.AutoSize = true; |
|
444 |
this.label26.BackColor = System.Drawing.Color.Yellow; |
|
445 |
this.label26.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
446 |
this.label26.ForeColor = System.Drawing.Color.Black; |
|
447 |
this.label26.Location = new System.Drawing.Point(370, 34); |
|
448 |
this.label26.Name = "label26"; |
|
449 |
this.label26.Size = new System.Drawing.Size(30, 19); |
|
450 |
this.label26.TabIndex = 68; |
|
451 |
this.label26.Text = "-"; |
|
452 |
this.label26.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
453 |
// |
|
454 |
// label30 |
|
455 |
// |
|
456 |
this.label30.BackColor = System.Drawing.Color.Beige; |
|
457 |
this.label30.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
458 |
this.label30.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
459 |
this.label30.ForeColor = System.Drawing.Color.Black; |
|
460 |
this.label30.Location = new System.Drawing.Point(412, 31); |
|
461 |
this.label30.Name = "label30"; |
|
462 |
this.label30.Size = new System.Drawing.Size(120, 25); |
|
463 |
this.label30.TabIndex = 66; |
|
464 |
this.label30.Text = "副担当者経過給与"; |
|
465 |
this.label30.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
466 |
// |
|
467 |
// label33 |
|
468 |
// |
|
469 |
this.label33.BackColor = System.Drawing.Color.White; |
|
470 |
this.label33.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
471 |
this.label33.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
472 |
this.label33.ForeColor = System.Drawing.Color.Black; |
|
473 |
this.label33.Location = new System.Drawing.Point(532, 31); |
|
474 |
this.label33.Name = "label33"; |
|
475 |
this.label33.Size = new System.Drawing.Size(140, 25); |
|
476 |
this.label33.TabIndex = 67; |
|
477 |
this.label33.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
478 |
// |
|
479 |
// label34 |
|
480 |
// |
|
481 |
this.label34.BackColor = System.Drawing.Color.White; |
|
482 |
this.label34.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
483 |
this.label34.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
484 |
this.label34.ForeColor = System.Drawing.Color.Black; |
|
485 |
this.label34.Location = new System.Drawing.Point(846, 31); |
|
486 |
this.label34.Name = "label34"; |
|
487 |
this.label34.Size = new System.Drawing.Size(140, 25); |
|
488 |
this.label34.TabIndex = 65; |
|
489 |
this.label34.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
490 |
// |
|
491 |
// label38 |
|
492 |
// |
|
493 |
this.label38.BackColor = System.Drawing.Color.Beige; |
|
494 |
this.label38.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
495 |
this.label38.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
496 |
this.label38.ForeColor = System.Drawing.Color.Black; |
|
497 |
this.label38.Location = new System.Drawing.Point(726, 31); |
|
498 |
this.label38.Name = "label38"; |
|
499 |
this.label38.Size = new System.Drawing.Size(120, 25); |
|
500 |
this.label38.TabIndex = 64; |
|
501 |
this.label38.Text = "副担当者差額金額"; |
|
502 |
this.label38.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
503 |
// |
|
504 |
// label39 |
|
505 |
// |
|
506 |
this.label39.AutoSize = true; |
|
507 |
this.label39.BackColor = System.Drawing.Color.Yellow; |
|
508 |
this.label39.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
509 |
this.label39.ForeColor = System.Drawing.Color.Black; |
|
510 |
this.label39.Location = new System.Drawing.Point(684, 34); |
|
511 |
this.label39.Name = "label39"; |
|
512 |
this.label39.Size = new System.Drawing.Size(30, 19); |
|
513 |
this.label39.TabIndex = 63; |
|
514 |
this.label39.Text = "="; |
|
515 |
this.label39.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
516 |
// |
|
517 |
// label35 |
|
518 |
// |
|
519 |
this.label35.AutoSize = true; |
|
520 |
this.label35.BackColor = System.Drawing.Color.Yellow; |
|
521 |
this.label35.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
522 |
this.label35.ForeColor = System.Drawing.Color.Black; |
|
523 |
this.label35.Location = new System.Drawing.Point(370, 9); |
|
524 |
this.label35.Name = "label35"; |
|
525 |
this.label35.Size = new System.Drawing.Size(30, 19); |
|
526 |
this.label35.TabIndex = 62; |
|
527 |
this.label35.Text = "-"; |
|
528 |
this.label35.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
529 |
// |
|
530 |
// label36 |
|
531 |
// |
|
532 |
this.label36.BackColor = System.Drawing.Color.MediumAquamarine; |
|
533 |
this.label36.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
534 |
this.label36.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
535 |
this.label36.ForeColor = System.Drawing.Color.Black; |
|
536 |
this.label36.Location = new System.Drawing.Point(412, 6); |
|
537 |
this.label36.Name = "label36"; |
|
538 |
this.label36.Size = new System.Drawing.Size(120, 25); |
|
539 |
this.label36.TabIndex = 60; |
|
540 |
this.label36.Text = "担当者経過給与"; |
|
541 |
this.label36.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
542 |
// |
|
543 |
// label37 |
|
544 |
// |
|
545 |
this.label37.BackColor = System.Drawing.Color.White; |
|
546 |
this.label37.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
547 |
this.label37.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
548 |
this.label37.ForeColor = System.Drawing.Color.Black; |
|
549 |
this.label37.Location = new System.Drawing.Point(532, 6); |
|
550 |
this.label37.Name = "label37"; |
|
551 |
this.label37.Size = new System.Drawing.Size(140, 25); |
|
552 |
this.label37.TabIndex = 61; |
|
553 |
this.label37.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
554 |
// |
|
555 |
// label31 |
|
556 |
// |
|
557 |
this.label31.BackColor = System.Drawing.Color.MistyRose; |
|
558 |
this.label31.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
559 |
this.label31.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
560 |
this.label31.ForeColor = System.Drawing.Color.Black; |
|
561 |
this.label31.Location = new System.Drawing.Point(98, 56); |
|
562 |
this.label31.Name = "label31"; |
|
563 |
this.label31.Size = new System.Drawing.Size(120, 25); |
|
564 |
this.label31.TabIndex = 55; |
|
565 |
this.label31.Text = "指導員振分給与"; |
|
566 |
this.label31.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
567 |
// |
|
568 |
// label32 |
|
569 |
// |
|
570 |
this.label32.BackColor = System.Drawing.Color.White; |
|
571 |
this.label32.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
572 |
this.label32.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
573 |
this.label32.ForeColor = System.Drawing.Color.Black; |
|
574 |
this.label32.Location = new System.Drawing.Point(218, 56); |
|
575 |
this.label32.Name = "label32"; |
|
576 |
this.label32.Size = new System.Drawing.Size(140, 25); |
|
577 |
this.label32.TabIndex = 56; |
|
578 |
this.label32.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
579 |
// |
|
580 |
// label28 |
|
581 |
// |
|
582 |
this.label28.BackColor = System.Drawing.Color.White; |
|
583 |
this.label28.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
584 |
this.label28.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
585 |
this.label28.ForeColor = System.Drawing.Color.Black; |
|
586 |
this.label28.Location = new System.Drawing.Point(846, 6); |
|
587 |
this.label28.Name = "label28"; |
|
588 |
this.label28.Size = new System.Drawing.Size(140, 25); |
|
589 |
this.label28.TabIndex = 54; |
|
590 |
this.label28.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
591 |
// |
|
592 |
// label29 |
|
593 |
// |
|
594 |
this.label29.BackColor = System.Drawing.Color.MediumAquamarine; |
|
595 |
this.label29.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
596 |
this.label29.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
597 |
this.label29.ForeColor = System.Drawing.Color.Black; |
|
598 |
this.label29.Location = new System.Drawing.Point(726, 6); |
|
599 |
this.label29.Name = "label29"; |
|
600 |
this.label29.Size = new System.Drawing.Size(120, 25); |
|
601 |
this.label29.TabIndex = 53; |
|
602 |
this.label29.Text = "担当者差額金額"; |
|
603 |
this.label29.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
604 |
// |
|
605 |
// label27 |
|
606 |
// |
|
607 |
this.label27.AutoSize = true; |
|
608 |
this.label27.BackColor = System.Drawing.Color.Yellow; |
|
609 |
this.label27.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
610 |
this.label27.ForeColor = System.Drawing.Color.Black; |
|
611 |
this.label27.Location = new System.Drawing.Point(684, 9); |
|
612 |
this.label27.Name = "label27"; |
|
613 |
this.label27.Size = new System.Drawing.Size(30, 19); |
|
614 |
this.label27.TabIndex = 52; |
|
615 |
this.label27.Text = "="; |
|
616 |
this.label27.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
617 |
// |
|
618 |
// label24 |
|
619 |
// |
|
620 |
this.label24.BackColor = System.Drawing.Color.Beige; |
|
621 |
this.label24.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
622 |
this.label24.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
623 |
this.label24.ForeColor = System.Drawing.Color.Black; |
|
624 |
this.label24.Location = new System.Drawing.Point(98, 31); |
|
625 |
this.label24.Name = "label24"; |
|
626 |
this.label24.Size = new System.Drawing.Size(120, 25); |
|
627 |
this.label24.TabIndex = 49; |
|
628 |
this.label24.Text = "副担当者振分給与"; |
|
629 |
this.label24.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
630 |
// |
|
631 |
// label25 |
|
632 |
// |
|
633 |
this.label25.BackColor = System.Drawing.Color.White; |
|
634 |
this.label25.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
635 |
this.label25.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
636 |
this.label25.ForeColor = System.Drawing.Color.Black; |
|
637 |
this.label25.Location = new System.Drawing.Point(218, 31); |
|
638 |
this.label25.Name = "label25"; |
|
639 |
this.label25.Size = new System.Drawing.Size(140, 25); |
|
640 |
this.label25.TabIndex = 50; |
|
641 |
this.label25.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
642 |
// |
|
643 |
// label8 |
|
644 |
// |
|
645 |
this.label8.BackColor = System.Drawing.Color.White; |
|
646 |
this.label8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
647 |
this.label8.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
648 |
this.label8.ForeColor = System.Drawing.Color.Black; |
|
649 |
this.label8.Location = new System.Drawing.Point(218, 6); |
|
650 |
this.label8.Name = "label8"; |
|
651 |
this.label8.Size = new System.Drawing.Size(140, 25); |
|
652 |
this.label8.TabIndex = 48; |
|
653 |
this.label8.Text = "-999,999,999"; |
|
654 |
this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
655 |
// |
|
656 |
// label23 |
|
657 |
// |
|
658 |
this.label23.BackColor = System.Drawing.Color.MediumAquamarine; |
|
659 |
this.label23.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
660 |
this.label23.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
661 |
this.label23.ForeColor = System.Drawing.Color.Black; |
|
662 |
this.label23.Location = new System.Drawing.Point(98, 6); |
|
663 |
this.label23.Name = "label23"; |
|
664 |
this.label23.Size = new System.Drawing.Size(120, 25); |
|
665 |
this.label23.TabIndex = 47; |
|
666 |
this.label23.Text = "担当者振分給与"; |
|
667 |
this.label23.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
668 |
// |
|
669 |
// label21 |
|
670 |
// |
|
671 |
this.label21.BackColor = System.Drawing.Color.White; |
|
672 |
this.label21.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
673 |
this.label21.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
674 |
this.label21.ForeColor = System.Drawing.Color.Black; |
|
675 |
this.label21.Location = new System.Drawing.Point(218, 106); |
|
676 |
this.label21.Name = "label21"; |
|
677 |
this.label21.Size = new System.Drawing.Size(140, 25); |
|
678 |
this.label21.TabIndex = 46; |
|
679 |
this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
680 |
// |
|
681 |
// label22 |
|
682 |
// |
|
683 |
this.label22.AutoSize = true; |
|
684 |
this.label22.BackColor = System.Drawing.Color.Yellow; |
|
685 |
this.label22.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
686 |
this.label22.ForeColor = System.Drawing.Color.Black; |
|
687 |
this.label22.Location = new System.Drawing.Point(370, 109); |
|
688 |
this.label22.Name = "label22"; |
|
689 |
this.label22.Size = new System.Drawing.Size(30, 19); |
|
690 |
this.label22.TabIndex = 11; |
|
691 |
this.label22.Text = "+"; |
|
692 |
this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
693 |
// |
|
694 |
// label20 |
|
695 |
// |
|
696 |
this.label20.BackColor = System.Drawing.Color.DarkOrange; |
|
697 |
this.label20.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
698 |
this.label20.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
699 |
this.label20.ForeColor = System.Drawing.Color.Black; |
|
700 |
this.label20.Location = new System.Drawing.Point(98, 106); |
|
701 |
this.label20.Name = "label20"; |
|
702 |
this.label20.Size = new System.Drawing.Size(120, 25); |
|
703 |
this.label20.TabIndex = 11; |
|
704 |
this.label20.Text = "振分済分純利益"; |
|
705 |
this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
706 |
// |
|
707 |
// label13 |
|
708 |
// |
|
709 |
this.label13.AutoSize = true; |
|
710 |
this.label13.BackColor = System.Drawing.Color.Yellow; |
|
711 |
this.label13.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
712 |
this.label13.ForeColor = System.Drawing.Color.Black; |
|
713 |
this.label13.Location = new System.Drawing.Point(998, 109); |
|
714 |
this.label13.Name = "label13"; |
|
715 |
this.label13.Size = new System.Drawing.Size(30, 19); |
|
716 |
this.label13.TabIndex = 3; |
|
717 |
this.label13.Text = "="; |
|
718 |
this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
719 |
// |
|
720 |
// label10 |
|
721 |
// |
|
722 |
this.label10.AutoSize = true; |
|
723 |
this.label10.BackColor = System.Drawing.Color.Yellow; |
|
724 |
this.label10.Font = new System.Drawing.Font("MS 明朝", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
725 |
this.label10.ForeColor = System.Drawing.Color.Black; |
|
726 |
this.label10.Location = new System.Drawing.Point(684, 109); |
|
727 |
this.label10.Name = "label10"; |
|
728 |
this.label10.Size = new System.Drawing.Size(30, 19); |
|
729 |
this.label10.TabIndex = 8; |
|
730 |
this.label10.Text = "+"; |
|
731 |
this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
732 |
// |
|
733 |
// label16 |
|
734 |
// |
|
735 |
this.label16.BackColor = System.Drawing.Color.White; |
|
736 |
this.label16.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
737 |
this.label16.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
738 |
this.label16.ForeColor = System.Drawing.Color.Black; |
|
739 |
this.label16.Location = new System.Drawing.Point(532, 106); |
|
740 |
this.label16.Name = "label16"; |
|
741 |
this.label16.Size = new System.Drawing.Size(140, 25); |
|
742 |
this.label16.TabIndex = 7; |
|
743 |
this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
744 |
// |
|
745 |
// label14 |
|
746 |
// |
|
747 |
this.label14.BackColor = System.Drawing.Color.White; |
|
748 |
this.label14.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
749 |
this.label14.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
750 |
this.label14.ForeColor = System.Drawing.Color.Black; |
|
751 |
this.label14.Location = new System.Drawing.Point(1160, 106); |
|
752 |
this.label14.Name = "label14"; |
|
753 |
this.label14.Size = new System.Drawing.Size(140, 25); |
|
754 |
this.label14.TabIndex = 5; |
|
755 |
this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
756 |
// |
|
757 |
// label17 |
|
758 |
// |
|
759 |
this.label17.BackColor = System.Drawing.Color.DarkOrange; |
|
760 |
this.label17.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
761 |
this.label17.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
762 |
this.label17.ForeColor = System.Drawing.Color.Black; |
|
763 |
this.label17.Location = new System.Drawing.Point(412, 106); |
|
764 |
this.label17.Name = "label17"; |
|
765 |
this.label17.Size = new System.Drawing.Size(120, 25); |
|
766 |
this.label17.TabIndex = 6; |
|
767 |
this.label17.Text = "未振分粗利益"; |
|
768 |
this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
769 |
// |
|
770 |
// label15 |
|
771 |
// |
|
772 |
this.label15.BackColor = System.Drawing.Color.DarkOrange; |
|
773 |
this.label15.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
774 |
this.label15.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
775 |
this.label15.ForeColor = System.Drawing.Color.Black; |
|
776 |
this.label15.Location = new System.Drawing.Point(1040, 106); |
|
777 |
this.label15.Name = "label15"; |
|
778 |
this.label15.Size = new System.Drawing.Size(120, 25); |
|
779 |
this.label15.TabIndex = 4; |
|
780 |
this.label15.Text = "利益金額"; |
|
781 |
this.label15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
782 |
// |
|
783 |
// label11 |
|
784 |
// |
|
785 |
this.label11.BackColor = System.Drawing.Color.White; |
|
786 |
this.label11.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
787 |
this.label11.Font = new System.Drawing.Font("MS 明朝", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
788 |
this.label11.ForeColor = System.Drawing.Color.Black; |
|
789 |
this.label11.Location = new System.Drawing.Point(846, 106); |
|
790 |
this.label11.Name = "label11"; |
|
791 |
this.label11.Size = new System.Drawing.Size(140, 25); |
|
792 |
this.label11.TabIndex = 1; |
|
793 |
this.label11.Text = "-999,999,999"; |
|
794 |
this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight; |
|
795 |
// |
|
796 |
// label9 |
|
797 |
// |
|
798 |
this.label9.BackColor = System.Drawing.Color.DodgerBlue; |
|
799 |
this.label9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
800 |
this.label9.Font = new System.Drawing.Font("MS 明朝", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
801 |
this.label9.ForeColor = System.Drawing.Color.Black; |
|
802 |
this.label9.Location = new System.Drawing.Point(726, 106); |
|
803 |
this.label9.Name = "label9"; |
|
804 |
this.label9.Size = new System.Drawing.Size(120, 25); |
|
805 |
this.label9.TabIndex = 0; |
|
806 |
this.label9.Text = "人件費差額合計"; |
|
807 |
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
808 |
// |
|
809 |
// cmbDepartment |
|
810 |
// |
|
811 |
this.cmbDepartment.BackColor = System.Drawing.Color.White; |
|
812 |
this.cmbDepartment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
813 |
this.cmbDepartment.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
814 |
this.cmbDepartment.FormattingEnabled = true; |
|
815 |
this.cmbDepartment.Location = new System.Drawing.Point(408, 15); |
|
816 |
this.cmbDepartment.Name = "cmbDepartment"; |
|
817 |
this.cmbDepartment.Size = new System.Drawing.Size(200, 23); |
|
818 |
this.cmbDepartment.TabIndex = 1; |
|
819 |
this.cmbDepartment.SelectedIndexChanged += new System.EventHandler(this.cmbDepartment_SelectedIndexChanged); |
|
820 |
// |
|
821 |
// label5 |
|
822 |
// |
|
823 |
this.label5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); |
|
824 |
this.label5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
825 |
this.label5.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
826 |
this.label5.ForeColor = System.Drawing.Color.Black; |
|
827 |
this.label5.Location = new System.Drawing.Point(280, 14); |
|
828 |
this.label5.Name = "label5"; |
|
829 |
this.label5.Size = new System.Drawing.Size(120, 25); |
|
830 |
this.label5.TabIndex = 40; |
|
831 |
this.label5.Text = "担当部署"; |
|
832 |
this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
833 |
// |
|
834 |
// label2 |
|
835 |
// |
|
836 |
this.label2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); |
|
837 |
this.label2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; |
|
838 |
this.label2.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
839 |
this.label2.ForeColor = System.Drawing.Color.Black; |
|
840 |
this.label2.Location = new System.Drawing.Point(6, 14); |
|
841 |
this.label2.Name = "label2"; |
|
842 |
this.label2.Size = new System.Drawing.Size(120, 25); |
|
843 |
this.label2.TabIndex = 38; |
|
844 |
this.label2.Text = "営業期"; |
|
845 |
this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; |
|
846 |
// |
|
847 |
// numUDConstPro |
|
848 |
// |
|
849 |
this.numUDConstPro.BackColor = System.Drawing.Color.White; |
|
850 |
this.numUDConstPro.Font = new System.Drawing.Font("MS 明朝", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); |
|
851 |
this.numUDConstPro.ForeColor = System.Drawing.Color.Black; |
|
852 |
this.numUDConstPro.Location = new System.Drawing.Point(159, 15); |
|
853 |
this.numUDConstPro.Name = "numUDConstPro"; |
|
854 |
this.numUDConstPro.ReadOnly = true; |
|
855 |
this.numUDConstPro.Size = new System.Drawing.Size(80, 23); |
|
856 |
this.numUDConstPro.TabIndex = 0; |
|
857 |
this.numUDConstPro.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; |
|
858 |
this.numUDConstPro.ValueChanged += new System.EventHandler(this.numUDConstPro_ValueChanged); |
|
859 |
// |
|
860 |
// cmbConstructionPerson |
|
861 |
// |
|
862 |
this.cmbConstructionPerson.BackColor = System.Drawing.Color.White; |
|
863 |
this.cmbConstructionPerson.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; |
|
864 |
this.cmbConstructionPerson.FlatStyle = System.Windows.Forms.FlatStyle.Popup; |
|
865 |
this.cmbConstructionPerson.FormattingEnabled = true; |
|
866 |
this.cmbConstructionPerson.Location = new System.Drawing.Point(752, 15); |
|
867 |
this.cmbConstructionPerson.Name = "cmbConstructionPerson"; |
他の形式にエクスポート: Unified diff