-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBatchForm.Designer.cs
713 lines (708 loc) · 34.6 KB
/
BatchForm.Designer.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
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
namespace Numeric_List_Generator
{
partial class BatchForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BatchForm));
buttonRedo = new Button();
textBoxStringAfterNumber = new TextBox();
textBoxStringBeforeNumber = new TextBox();
buttonUndo = new Button();
buttonCreateList = new Button();
progressBar = new ProgressBar();
labelProgess = new Label();
buttonDeleteList = new Button();
buttonSaveList = new Button();
buttonCopyList = new Button();
checkBoxFillWithZeros = new CheckBox();
numericUpDownNumberMaximum = new NumericUpDown();
labelNumberMax = new Label();
numericUpDownNumberMinimum = new NumericUpDown();
labelNumberMin = new Label();
labelStringAfterNumber = new Label();
labelStringBeforeNumber = new Label();
listView = new ListView();
columnHeader1 = new ColumnHeader();
columnHeader2 = new ColumnHeader();
columnHeader3 = new ColumnHeader();
columnHeader4 = new ColumnHeader();
statusStripInfo = new StatusStrip();
toolStripStatusLabelInformation = new ToolStripStatusLabel();
statusStripStatistic = new StatusStrip();
toolStripStatusLabelSize = new ToolStripStatusLabel();
toolStripStatusLabelLines = new ToolStripStatusLabel();
toolStripStatusLabelTimeSpan = new ToolStripStatusLabel();
toolStripStatusLabelLim = new ToolStripStatusLabel();
toolStripSplitButtonStyle = new ToolStripSplitButton();
toolStripMenuItemActivateVisualStyle = new ToolStripMenuItem();
toolStripMenuItemDeactivateVisualStyle = new ToolStripMenuItem();
buttonAddToList = new Button();
backgroundWorker = new System.ComponentModel.BackgroundWorker();
toolTip = new ToolTip(components);
((System.ComponentModel.ISupportInitialize)numericUpDownNumberMaximum).BeginInit();
((System.ComponentModel.ISupportInitialize)numericUpDownNumberMinimum).BeginInit();
statusStripInfo.SuspendLayout();
statusStripStatistic.SuspendLayout();
SuspendLayout();
//
// buttonRedo
//
buttonRedo.AccessibleDescription = "Verwirft die letzte rückgängig gemachte Änderung";
buttonRedo.AccessibleName = "Letzte Änderung verwerfen";
buttonRedo.AccessibleRole = AccessibleRole.PushButton;
buttonRedo.AutoEllipsis = true;
buttonRedo.Image = Properties.Resources.redo;
buttonRedo.Location = new Point(345, 125);
buttonRedo.Margin = new Padding(4, 3, 4, 3);
buttonRedo.Name = "buttonRedo";
buttonRedo.Size = new Size(64, 23);
buttonRedo.TabIndex = 11;
buttonRedo.Text = "&Redo";
buttonRedo.TextAlign = ContentAlignment.MiddleRight;
buttonRedo.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonRedo, "Letzte Änderung verwerfen");
buttonRedo.UseVisualStyleBackColor = true;
buttonRedo.Click += ButtonRedo_Click;
buttonRedo.Enter += SetStatusbar_Enter;
buttonRedo.Leave += ClearStatusbar_Leave;
buttonRedo.MouseEnter += SetStatusbar_Enter;
buttonRedo.MouseLeave += ClearStatusbar_Leave;
//
// textBoxStringAfterNumber
//
textBoxStringAfterNumber.AccessibleDescription = "Eingabe des Textes nach der Zahlenangabe";
textBoxStringAfterNumber.AccessibleName = "Eingabe des Textes nach der Zahlenangabe";
textBoxStringAfterNumber.AccessibleRole = AccessibleRole.Text;
textBoxStringAfterNumber.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
textBoxStringAfterNumber.AutoCompleteSource = AutoCompleteSource.CustomSource;
textBoxStringAfterNumber.Location = new Point(13, 125);
textBoxStringAfterNumber.Margin = new Padding(4, 3, 4, 3);
textBoxStringAfterNumber.Name = "textBoxStringAfterNumber";
textBoxStringAfterNumber.PlaceholderText = "Eingabe des Textes nach der Zahlenangabe";
textBoxStringAfterNumber.Size = new Size(153, 23);
textBoxStringAfterNumber.TabIndex = 8;
textBoxStringAfterNumber.Text = ".jpg";
toolTip.SetToolTip(textBoxStringAfterNumber, "Eingabe des Textes nach der Zahlenangabe");
textBoxStringAfterNumber.Enter += SetStatusbar_Enter;
textBoxStringAfterNumber.Leave += ClearStatusbar_Leave;
textBoxStringAfterNumber.MouseEnter += SetStatusbar_Enter;
textBoxStringAfterNumber.MouseLeave += ClearStatusbar_Leave;
//
// textBoxStringBeforeNumber
//
textBoxStringBeforeNumber.AccessibleDescription = "Eingabe des Textes vor der Zahlenangabe";
textBoxStringBeforeNumber.AccessibleName = "Eingabe des Textes vor der Zahlenangabe";
textBoxStringBeforeNumber.AccessibleRole = AccessibleRole.Text;
textBoxStringBeforeNumber.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
textBoxStringBeforeNumber.AutoCompleteSource = AutoCompleteSource.CustomSource;
textBoxStringBeforeNumber.Location = new Point(13, 28);
textBoxStringBeforeNumber.Margin = new Padding(4, 3, 4, 3);
textBoxStringBeforeNumber.Name = "textBoxStringBeforeNumber";
textBoxStringBeforeNumber.PlaceholderText = "Eingabe des Textes vor der Zahlenangabe";
textBoxStringBeforeNumber.Size = new Size(395, 23);
textBoxStringBeforeNumber.TabIndex = 1;
textBoxStringBeforeNumber.Text = "http://www.domain.com/files/picture";
toolTip.SetToolTip(textBoxStringBeforeNumber, "Eingabe des Textes vor der Zahlenangabe");
textBoxStringBeforeNumber.Enter += SetStatusbar_Enter;
textBoxStringBeforeNumber.Leave += ClearStatusbar_Leave;
textBoxStringBeforeNumber.MouseEnter += SetStatusbar_Enter;
textBoxStringBeforeNumber.MouseLeave += ClearStatusbar_Leave;
//
// buttonUndo
//
buttonUndo.AccessibleDescription = "Macht die letzte Änderung rückgängig";
buttonUndo.AccessibleName = "Änderung rückgängigmachen";
buttonUndo.AccessibleRole = AccessibleRole.PushButton;
buttonUndo.AutoEllipsis = true;
buttonUndo.Image = (Image)resources.GetObject("buttonUndo.Image");
buttonUndo.Location = new Point(273, 125);
buttonUndo.Margin = new Padding(4, 3, 4, 3);
buttonUndo.Name = "buttonUndo";
buttonUndo.Size = new Size(64, 23);
buttonUndo.TabIndex = 10;
buttonUndo.Text = "&Undo";
buttonUndo.TextAlign = ContentAlignment.MiddleRight;
buttonUndo.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonUndo, "Änderung rückgängigmachen");
buttonUndo.UseVisualStyleBackColor = true;
buttonUndo.Click += ButtonUndo_Click;
buttonUndo.Enter += SetStatusbar_Enter;
buttonUndo.Leave += ClearStatusbar_Leave;
buttonUndo.MouseEnter += SetStatusbar_Enter;
buttonUndo.MouseLeave += ClearStatusbar_Leave;
//
// buttonCreateList
//
buttonCreateList.AccessibleDescription = "Erstellt eine neue Liste";
buttonCreateList.AccessibleName = "Liste neu erstellen";
buttonCreateList.AccessibleRole = AccessibleRole.PushButton;
buttonCreateList.AutoEllipsis = true;
buttonCreateList.Image = Properties.Resources.document_index;
buttonCreateList.Location = new Point(13, 331);
buttonCreateList.Margin = new Padding(4, 3, 4, 3);
buttonCreateList.Name = "buttonCreateList";
buttonCreateList.Size = new Size(101, 30);
buttonCreateList.TabIndex = 13;
buttonCreateList.Text = "Neu &erstellen";
buttonCreateList.TextAlign = ContentAlignment.MiddleRight;
buttonCreateList.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonCreateList, "Liste neu erstellen");
buttonCreateList.UseVisualStyleBackColor = true;
buttonCreateList.Click += ButtonCreateList_Click;
buttonCreateList.Enter += SetStatusbar_Enter;
buttonCreateList.Leave += ClearStatusbar_Leave;
buttonCreateList.MouseEnter += SetStatusbar_Enter;
buttonCreateList.MouseLeave += ClearStatusbar_Leave;
//
// progressBar
//
progressBar.AccessibleDescription = "Zeigt den laufenden Verarbeitungsstatus an";
progressBar.AccessibleName = "Verarbeitungsstatus";
progressBar.AccessibleRole = AccessibleRole.ProgressBar;
progressBar.Location = new Point(97, 377);
progressBar.Margin = new Padding(4, 3, 4, 3);
progressBar.Name = "progressBar";
progressBar.Size = new Size(310, 20);
progressBar.Style = ProgressBarStyle.Continuous;
progressBar.TabIndex = 18;
toolTip.SetToolTip(progressBar, "Zeigt den laufenden Verarbeitungsstatus an");
progressBar.MouseEnter += SetStatusbar_Enter;
progressBar.MouseLeave += ClearStatusbar_Leave;
//
// labelProgess
//
labelProgess.AccessibleDescription = "Verarbeitung";
labelProgess.AccessibleName = "Verarbeitung";
labelProgess.AccessibleRole = AccessibleRole.StaticText;
labelProgess.AutoEllipsis = true;
labelProgess.AutoSize = true;
labelProgess.Location = new Point(12, 377);
labelProgess.Margin = new Padding(4, 0, 4, 0);
labelProgess.Name = "labelProgess";
labelProgess.Size = new Size(77, 15);
labelProgess.TabIndex = 17;
labelProgess.Text = "Verarbeitun&g:";
toolTip.SetToolTip(labelProgess, "Verarbeitung");
labelProgess.Enter += SetStatusbar_Enter;
labelProgess.Leave += ClearStatusbar_Leave;
labelProgess.MouseEnter += SetStatusbar_Enter;
labelProgess.MouseLeave += ClearStatusbar_Leave;
//
// buttonDeleteList
//
buttonDeleteList.AccessibleDescription = "Löscht die Liste";
buttonDeleteList.AccessibleName = "Liste löschen";
buttonDeleteList.AccessibleRole = AccessibleRole.PushButton;
buttonDeleteList.AutoEllipsis = true;
buttonDeleteList.Image = Properties.Resources.bin_empty;
buttonDeleteList.Location = new Point(122, 331);
buttonDeleteList.Margin = new Padding(4, 3, 4, 3);
buttonDeleteList.Name = "buttonDeleteList";
buttonDeleteList.Size = new Size(77, 30);
buttonDeleteList.TabIndex = 14;
buttonDeleteList.Text = "&Löschen";
buttonDeleteList.TextAlign = ContentAlignment.MiddleRight;
buttonDeleteList.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonDeleteList, "Liste löschen");
buttonDeleteList.UseVisualStyleBackColor = true;
buttonDeleteList.Click += ButtonDeleteList_Click;
buttonDeleteList.Enter += SetStatusbar_Enter;
buttonDeleteList.Leave += ClearStatusbar_Leave;
buttonDeleteList.MouseEnter += SetStatusbar_Enter;
buttonDeleteList.MouseLeave += ClearStatusbar_Leave;
//
// buttonSaveList
//
buttonSaveList.AccessibleDescription = "Speichert die Liste als Textdatei ab";
buttonSaveList.AccessibleName = "Liste abspeichern";
buttonSaveList.AccessibleRole = AccessibleRole.PushButton;
buttonSaveList.AutoEllipsis = true;
buttonSaveList.Image = Properties.Resources.diskette;
buttonSaveList.Location = new Point(294, 331);
buttonSaveList.Margin = new Padding(4, 3, 4, 3);
buttonSaveList.Name = "buttonSaveList";
buttonSaveList.Size = new Size(83, 30);
buttonSaveList.TabIndex = 16;
buttonSaveList.Text = "&Speichern";
buttonSaveList.TextAlign = ContentAlignment.MiddleRight;
buttonSaveList.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonSaveList, "Liste abspeichern");
buttonSaveList.UseVisualStyleBackColor = true;
buttonSaveList.Click += ButtonSaveList_Click;
buttonSaveList.Enter += SetStatusbar_Enter;
buttonSaveList.Leave += ClearStatusbar_Leave;
buttonSaveList.MouseEnter += SetStatusbar_Enter;
buttonSaveList.MouseLeave += ClearStatusbar_Leave;
//
// buttonCopyList
//
buttonCopyList.AccessibleDescription = "Kopiert die Liste in die Windows-Zwischenablage";
buttonCopyList.AccessibleName = "Liste kopieren";
buttonCopyList.AccessibleRole = AccessibleRole.PushButton;
buttonCopyList.AutoEllipsis = true;
buttonCopyList.Image = Properties.Resources.page_copy;
buttonCopyList.Location = new Point(207, 331);
buttonCopyList.Margin = new Padding(4, 3, 4, 3);
buttonCopyList.Name = "buttonCopyList";
buttonCopyList.Size = new Size(79, 30);
buttonCopyList.TabIndex = 15;
buttonCopyList.Text = "&Kopieren";
buttonCopyList.TextAlign = ContentAlignment.MiddleRight;
buttonCopyList.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonCopyList, "Liste kopieren");
buttonCopyList.UseVisualStyleBackColor = true;
buttonCopyList.Click += ButtonCopyList_Click;
buttonCopyList.Enter += SetStatusbar_Enter;
buttonCopyList.Leave += ClearStatusbar_Leave;
buttonCopyList.MouseEnter += SetStatusbar_Enter;
buttonCopyList.MouseLeave += ClearStatusbar_Leave;
//
// checkBoxFillWithZeros
//
checkBoxFillWithZeros.AccessibleDescription = "Markieren, wenn die Einträge mit voranführenden Nullen aufgefüllt werden sollen";
checkBoxFillWithZeros.AccessibleName = "Markieren, wenn die Einträge mit voranführenden Nullen aufgefüllt werden sollen";
checkBoxFillWithZeros.AccessibleRole = AccessibleRole.CheckButton;
checkBoxFillWithZeros.AutoSize = true;
checkBoxFillWithZeros.Location = new Point(254, 68);
checkBoxFillWithZeros.Margin = new Padding(4, 3, 4, 3);
checkBoxFillWithZeros.Name = "checkBoxFillWithZeros";
checkBoxFillWithZeros.Size = new Size(132, 19);
checkBoxFillWithZeros.TabIndex = 6;
checkBoxFillWithZeros.Text = "&mit Nullen auffüllen";
toolTip.SetToolTip(checkBoxFillWithZeros, "Markieren, wenn die Einträge mit voranführenden Nullen aufgefüllt werden sollen");
checkBoxFillWithZeros.UseVisualStyleBackColor = true;
checkBoxFillWithZeros.Enter += SetStatusbar_Enter;
checkBoxFillWithZeros.Leave += ClearStatusbar_Leave;
checkBoxFillWithZeros.MouseEnter += SetStatusbar_Enter;
checkBoxFillWithZeros.MouseLeave += ClearStatusbar_Leave;
//
// numericUpDownNumberMaximum
//
numericUpDownNumberMaximum.AccessibleDescription = "Maximun der Zahl, mit der die Einträge erstellt werden sollen";
numericUpDownNumberMaximum.AccessibleName = "Maximun der Zahl, mit der die Einträge erstellt werden sollen";
numericUpDownNumberMaximum.AccessibleRole = AccessibleRole.SpinButton;
numericUpDownNumberMaximum.Location = new Point(182, 66);
numericUpDownNumberMaximum.Margin = new Padding(4, 3, 4, 3);
numericUpDownNumberMaximum.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 });
numericUpDownNumberMaximum.Name = "numericUpDownNumberMaximum";
numericUpDownNumberMaximum.Size = new Size(57, 23);
numericUpDownNumberMaximum.TabIndex = 5;
toolTip.SetToolTip(numericUpDownNumberMaximum, "Maximun der Zahl, mit der die Einträge erstellt werden sollen");
numericUpDownNumberMaximum.Value = new decimal(new int[] { 10, 0, 0, 0 });
numericUpDownNumberMaximum.Enter += SetStatusbar_Enter;
numericUpDownNumberMaximum.Leave += ClearStatusbar_Leave;
//
// labelNumberMax
//
labelNumberMax.AccessibleDescription = "Zahlen Maximum";
labelNumberMax.AccessibleName = "Zahlen Maximum";
labelNumberMax.AccessibleRole = AccessibleRole.StaticText;
labelNumberMax.AutoEllipsis = true;
labelNumberMax.AutoSize = true;
labelNumberMax.Location = new Point(152, 68);
labelNumberMax.Margin = new Padding(4, 0, 4, 0);
labelNumberMax.Name = "labelNumberMax";
labelNumberMax.Size = new Size(22, 15);
labelNumberMax.TabIndex = 4;
labelNumberMax.Text = "b&is";
toolTip.SetToolTip(labelNumberMax, "Zahlen Maximum");
labelNumberMax.Enter += SetStatusbar_Enter;
labelNumberMax.Leave += ClearStatusbar_Leave;
labelNumberMax.MouseEnter += SetStatusbar_Enter;
labelNumberMax.MouseLeave += ClearStatusbar_Leave;
//
// numericUpDownNumberMinimum
//
numericUpDownNumberMinimum.AccessibleDescription = "Minimun der Zahl, mit der die Einträge erstellt werden sollen";
numericUpDownNumberMinimum.AccessibleName = "Minimun der Zahl, mit der die Einträge erstellt werden sollen";
numericUpDownNumberMinimum.AccessibleRole = AccessibleRole.SpinButton;
numericUpDownNumberMinimum.Location = new Point(88, 66);
numericUpDownNumberMinimum.Margin = new Padding(4, 3, 4, 3);
numericUpDownNumberMinimum.Maximum = new decimal(new int[] { 9999999, 0, 0, 0 });
numericUpDownNumberMinimum.Name = "numericUpDownNumberMinimum";
numericUpDownNumberMinimum.Size = new Size(57, 23);
numericUpDownNumberMinimum.TabIndex = 3;
toolTip.SetToolTip(numericUpDownNumberMinimum, "Minimun der Zahl, mit der die Einträge erstellt werden sollen");
numericUpDownNumberMinimum.Value = new decimal(new int[] { 1, 0, 0, 0 });
numericUpDownNumberMinimum.Enter += SetStatusbar_Enter;
numericUpDownNumberMinimum.Leave += ClearStatusbar_Leave;
//
// labelNumberMin
//
labelNumberMin.AccessibleDescription = "Zahlen Minimum";
labelNumberMin.AccessibleName = "Zahlen Minimum";
labelNumberMin.AccessibleRole = AccessibleRole.StaticText;
labelNumberMin.AutoEllipsis = true;
labelNumberMin.AutoSize = true;
labelNumberMin.Location = new Point(13, 68);
labelNumberMin.Margin = new Padding(4, 0, 4, 0);
labelNumberMin.Name = "labelNumberMin";
labelNumberMin.Size = new Size(66, 15);
labelNumberMin.TabIndex = 2;
labelNumberMin.Text = "Zahlen v&on";
toolTip.SetToolTip(labelNumberMin, "Zahlen Minimum");
labelNumberMin.Enter += SetStatusbar_Enter;
labelNumberMin.Leave += ClearStatusbar_Leave;
labelNumberMin.MouseEnter += SetStatusbar_Enter;
labelNumberMin.MouseLeave += ClearStatusbar_Leave;
//
// labelStringAfterNumber
//
labelStringAfterNumber.AccessibleDescription = "Zeichenkette nach der Zahl";
labelStringAfterNumber.AccessibleName = "Zeichenkette nach der Zahl";
labelStringAfterNumber.AccessibleRole = AccessibleRole.StaticText;
labelStringAfterNumber.AutoEllipsis = true;
labelStringAfterNumber.AutoSize = true;
labelStringAfterNumber.Location = new Point(13, 107);
labelStringAfterNumber.Margin = new Padding(4, 0, 4, 0);
labelStringAfterNumber.Name = "labelStringAfterNumber";
labelStringAfterNumber.Size = new Size(153, 15);
labelStringAfterNumber.TabIndex = 7;
labelStringAfterNumber.Text = "Zeichenkette &nach der Zahl:";
toolTip.SetToolTip(labelStringAfterNumber, "Zeichenkette nach der Zahl");
labelStringAfterNumber.Enter += SetStatusbar_Enter;
labelStringAfterNumber.Leave += ClearStatusbar_Leave;
labelStringAfterNumber.MouseEnter += SetStatusbar_Enter;
labelStringAfterNumber.MouseLeave += ClearStatusbar_Leave;
//
// labelStringBeforeNumber
//
labelStringBeforeNumber.AccessibleDescription = "Zeichenkette vor der Zahl";
labelStringBeforeNumber.AccessibleName = "Zeichenkette vor der Zahl";
labelStringBeforeNumber.AccessibleRole = AccessibleRole.StaticText;
labelStringBeforeNumber.AutoEllipsis = true;
labelStringBeforeNumber.AutoSize = true;
labelStringBeforeNumber.Location = new Point(13, 9);
labelStringBeforeNumber.Margin = new Padding(4, 0, 4, 0);
labelStringBeforeNumber.Name = "labelStringBeforeNumber";
labelStringBeforeNumber.Size = new Size(144, 15);
labelStringBeforeNumber.TabIndex = 0;
labelStringBeforeNumber.Text = "Zeichenkette &vor der Zahl:";
toolTip.SetToolTip(labelStringBeforeNumber, "Zeichenkette vor der Zahl");
labelStringBeforeNumber.Enter += SetStatusbar_Enter;
labelStringBeforeNumber.Leave += ClearStatusbar_Leave;
labelStringBeforeNumber.MouseEnter += SetStatusbar_Enter;
labelStringBeforeNumber.MouseLeave += ClearStatusbar_Leave;
//
// listView
//
listView.Activation = ItemActivation.OneClick;
listView.Columns.AddRange(new ColumnHeader[] { columnHeader1, columnHeader2, columnHeader3, columnHeader4 });
listView.FullRowSelect = true;
listView.GridLines = true;
listView.HoverSelection = true;
listView.Location = new Point(13, 165);
listView.Name = "listView";
listView.ShowItemToolTips = true;
listView.Size = new Size(396, 145);
listView.TabIndex = 12;
listView.UseCompatibleStateImageBehavior = false;
listView.View = View.Details;
listView.Enter += SetStatusbar_Enter;
listView.Leave += ClearStatusbar_Leave;
listView.MouseEnter += SetStatusbar_Enter;
listView.MouseLeave += ClearStatusbar_Leave;
//
// columnHeader1
//
columnHeader1.Text = "Zeichenkette davor";
columnHeader1.Width = 180;
//
// columnHeader2
//
columnHeader2.Text = "Zahl Min.";
columnHeader2.Width = 65;
//
// columnHeader3
//
columnHeader3.Text = "Zahl Max.";
columnHeader3.Width = 65;
//
// columnHeader4
//
columnHeader4.Text = "Zeichenkette danach";
columnHeader4.Width = 180;
//
// statusStripInfo
//
statusStripInfo.AccessibleDescription = "Statusbar für Informationstext";
statusStripInfo.AccessibleName = "Statusbar";
statusStripInfo.AccessibleRole = AccessibleRole.StatusBar;
statusStripInfo.Items.AddRange(new ToolStripItem[] { toolStripStatusLabelInformation });
statusStripInfo.Location = new Point(0, 410);
statusStripInfo.Name = "statusStripInfo";
statusStripInfo.ShowItemToolTips = true;
statusStripInfo.Size = new Size(422, 22);
statusStripInfo.SizingGrip = false;
statusStripInfo.TabIndex = 19;
statusStripInfo.TabStop = true;
statusStripInfo.Text = "statusStripInfo";
toolTip.SetToolTip(statusStripInfo, "Statusbar für Informationstext");
statusStripInfo.Enter += SetStatusbar_Enter;
statusStripInfo.Leave += ClearStatusbar_Leave;
statusStripInfo.MouseEnter += SetStatusbar_Enter;
statusStripInfo.MouseLeave += ClearStatusbar_Leave;
//
// toolStripStatusLabelInformation
//
toolStripStatusLabelInformation.AccessibleDescription = "Zeigt Informationsstext an";
toolStripStatusLabelInformation.AccessibleName = "Informationen";
toolStripStatusLabelInformation.AccessibleRole = AccessibleRole.StaticText;
toolStripStatusLabelInformation.AutoToolTip = true;
toolStripStatusLabelInformation.Name = "toolStripStatusLabelInformation";
toolStripStatusLabelInformation.Size = new Size(28, 17);
toolStripStatusLabelInformation.Text = "info";
toolStripStatusLabelInformation.MouseEnter += SetStatusbar_Enter;
toolStripStatusLabelInformation.MouseLeave += ClearStatusbar_Leave;
//
// statusStripStatistic
//
statusStripStatistic.AccessibleDescription = "Statusbar für statistische Angaben";
statusStripStatistic.AccessibleName = "Statusbar";
statusStripStatistic.AccessibleRole = AccessibleRole.StatusBar;
statusStripStatistic.AllowItemReorder = true;
statusStripStatistic.Items.AddRange(new ToolStripItem[] { toolStripStatusLabelSize, toolStripStatusLabelLines, toolStripStatusLabelTimeSpan, toolStripStatusLabelLim, toolStripSplitButtonStyle });
statusStripStatistic.Location = new Point(0, 432);
statusStripStatistic.Name = "statusStripStatistic";
statusStripStatistic.Padding = new Padding(1, 0, 16, 0);
statusStripStatistic.ShowItemToolTips = true;
statusStripStatistic.Size = new Size(422, 24);
statusStripStatistic.SizingGrip = false;
statusStripStatistic.TabIndex = 20;
statusStripStatistic.TabStop = true;
statusStripStatistic.Text = "statusStripStatistic";
toolTip.SetToolTip(statusStripStatistic, "Statusbar für statistische Angaben");
statusStripStatistic.Enter += SetStatusbar_Enter;
statusStripStatistic.Leave += ClearStatusbar_Leave;
statusStripStatistic.MouseEnter += SetStatusbar_Enter;
statusStripStatistic.MouseLeave += ClearStatusbar_Leave;
//
// toolStripStatusLabelSize
//
toolStripStatusLabelSize.AccessibleDescription = "Gibt die Größe der Liste in Bytes an";
toolStripStatusLabelSize.AccessibleName = "Größe der Liste";
toolStripStatusLabelSize.AccessibleRole = AccessibleRole.StaticText;
toolStripStatusLabelSize.AutoToolTip = true;
toolStripStatusLabelSize.BorderSides = ToolStripStatusLabelBorderSides.Left | ToolStripStatusLabelBorderSides.Top | ToolStripStatusLabelBorderSides.Right | ToolStripStatusLabelBorderSides.Bottom;
toolStripStatusLabelSize.Name = "toolStripStatusLabelSize";
toolStripStatusLabelSize.Size = new Size(43, 19);
toolStripStatusLabelSize.Tag = "Größe";
toolStripStatusLabelSize.Text = "Größe";
toolStripStatusLabelSize.MouseEnter += SetStatusbar_Enter;
toolStripStatusLabelSize.MouseLeave += ClearStatusbar_Leave;
//
// toolStripStatusLabelLines
//
toolStripStatusLabelLines.AccessibleDescription = "Gibt die Anzahl der Zeilen in der Liste an";
toolStripStatusLabelLines.AccessibleName = "Anzahl der Zeilen in der Liste";
toolStripStatusLabelLines.AccessibleRole = AccessibleRole.StaticText;
toolStripStatusLabelLines.AutoToolTip = true;
toolStripStatusLabelLines.BorderSides = ToolStripStatusLabelBorderSides.Left | ToolStripStatusLabelBorderSides.Top | ToolStripStatusLabelBorderSides.Right | ToolStripStatusLabelBorderSides.Bottom;
toolStripStatusLabelLines.Name = "toolStripStatusLabelLines";
toolStripStatusLabelLines.Size = new Size(43, 19);
toolStripStatusLabelLines.Tag = "Zeilen";
toolStripStatusLabelLines.Text = "Zeilen";
toolStripStatusLabelLines.MouseEnter += SetStatusbar_Enter;
toolStripStatusLabelLines.MouseLeave += ClearStatusbar_Leave;
//
// toolStripStatusLabelTimeSpan
//
toolStripStatusLabelTimeSpan.AccessibleDescription = "Gibt die Dauer der Listengenerierung an";
toolStripStatusLabelTimeSpan.AccessibleName = "Dauer der Listengenerierung";
toolStripStatusLabelTimeSpan.AccessibleRole = AccessibleRole.StaticText;
toolStripStatusLabelTimeSpan.AutoToolTip = true;
toolStripStatusLabelTimeSpan.BorderSides = ToolStripStatusLabelBorderSides.Left | ToolStripStatusLabelBorderSides.Top | ToolStripStatusLabelBorderSides.Right | ToolStripStatusLabelBorderSides.Bottom;
toolStripStatusLabelTimeSpan.Name = "toolStripStatusLabelTimeSpan";
toolStripStatusLabelTimeSpan.Size = new Size(42, 19);
toolStripStatusLabelTimeSpan.Tag = "Dauer";
toolStripStatusLabelTimeSpan.Text = "Dauer";
toolStripStatusLabelTimeSpan.ToolTipText = "Dauer";
toolStripStatusLabelTimeSpan.MouseEnter += SetStatusbar_Enter;
toolStripStatusLabelTimeSpan.MouseLeave += ClearStatusbar_Leave;
//
// toolStripStatusLabelLim
//
toolStripStatusLabelLim.AccessibleDescription = "Zeigt den berechneten LIM an";
toolStripStatusLabelLim.AccessibleName = "Berechneter LIM";
toolStripStatusLabelLim.AccessibleRole = AccessibleRole.StaticText;
toolStripStatusLabelLim.AutoToolTip = true;
toolStripStatusLabelLim.BorderSides = ToolStripStatusLabelBorderSides.Left | ToolStripStatusLabelBorderSides.Top | ToolStripStatusLabelBorderSides.Right | ToolStripStatusLabelBorderSides.Bottom;
toolStripStatusLabelLim.Name = "toolStripStatusLabelLim";
toolStripStatusLabelLim.Size = new Size(245, 19);
toolStripStatusLabelLim.Spring = true;
toolStripStatusLabelLim.Tag = "LIM";
toolStripStatusLabelLim.Text = "LIM";
toolStripStatusLabelLim.MouseEnter += SetStatusbar_Enter;
toolStripStatusLabelLim.MouseLeave += ClearStatusbar_Leave;
//
// toolStripSplitButtonStyle
//
toolStripSplitButtonStyle.AccessibleDescription = "Aktiviert oder deaktiviert den visuellen Stil des Programms";
toolStripSplitButtonStyle.AccessibleName = "Visuellen Stil de-/aktivieren";
toolStripSplitButtonStyle.AccessibleRole = AccessibleRole.PushButton;
toolStripSplitButtonStyle.DisplayStyle = ToolStripItemDisplayStyle.Image;
toolStripSplitButtonStyle.DropDownItems.AddRange(new ToolStripItem[] { toolStripMenuItemActivateVisualStyle, toolStripMenuItemDeactivateVisualStyle });
toolStripSplitButtonStyle.Image = Properties.Resources.application_grey;
toolStripSplitButtonStyle.ImageTransparentColor = Color.Magenta;
toolStripSplitButtonStyle.Name = "toolStripSplitButtonStyle";
toolStripSplitButtonStyle.Size = new Size(32, 22);
toolStripSplitButtonStyle.Text = "Visueller Stil";
toolStripSplitButtonStyle.MouseEnter += SetStatusbar_Enter;
toolStripSplitButtonStyle.MouseLeave += ClearStatusbar_Leave;
//
// toolStripMenuItemActivateVisualStyle
//
toolStripMenuItemActivateVisualStyle.AccessibleDescription = "Aktiviert den visuellen Stil des Programms";
toolStripMenuItemActivateVisualStyle.AccessibleName = "Visuellen Stil aktivieren";
toolStripMenuItemActivateVisualStyle.AccessibleRole = AccessibleRole.MenuItem;
toolStripMenuItemActivateVisualStyle.AutoToolTip = true;
toolStripMenuItemActivateVisualStyle.Image = Properties.Resources.application;
toolStripMenuItemActivateVisualStyle.Name = "toolStripMenuItemActivateVisualStyle";
toolStripMenuItemActivateVisualStyle.Size = new Size(204, 22);
toolStripMenuItemActivateVisualStyle.Text = "Visueller Stil &aktivieren";
toolStripMenuItemActivateVisualStyle.ToolTipText = "Visueller Stil aktivieren";
toolStripMenuItemActivateVisualStyle.MouseEnter += SetStatusbar_Enter;
toolStripMenuItemActivateVisualStyle.MouseLeave += ClearStatusbar_Leave;
//
// toolStripMenuItemDeactivateVisualStyle
//
toolStripMenuItemDeactivateVisualStyle.AccessibleDescription = "Deaktiviert den visuellen Stil des Programms";
toolStripMenuItemDeactivateVisualStyle.AccessibleName = "Visuellen Stil deaktivieren";
toolStripMenuItemDeactivateVisualStyle.AccessibleRole = AccessibleRole.MenuItem;
toolStripMenuItemDeactivateVisualStyle.AutoToolTip = true;
toolStripMenuItemDeactivateVisualStyle.Image = Properties.Resources.application_grey;
toolStripMenuItemDeactivateVisualStyle.Name = "toolStripMenuItemDeactivateVisualStyle";
toolStripMenuItemDeactivateVisualStyle.Size = new Size(204, 22);
toolStripMenuItemDeactivateVisualStyle.Text = "Visueller Stil &deaktivieren";
toolStripMenuItemDeactivateVisualStyle.ToolTipText = "Visueller Stil deaktivieren";
toolStripMenuItemDeactivateVisualStyle.MouseEnter += SetStatusbar_Enter;
toolStripMenuItemDeactivateVisualStyle.MouseLeave += ClearStatusbar_Leave;
//
// buttonAddToList
//
buttonAddToList.AccessibleDescription = "Fügt die Einträge an der vorhandenen Liste an";
buttonAddToList.AccessibleName = "Liste anfügen";
buttonAddToList.AccessibleRole = AccessibleRole.PushButton;
buttonAddToList.AutoEllipsis = true;
buttonAddToList.Image = Properties.Resources.add;
buttonAddToList.Location = new Point(177, 125);
buttonAddToList.Margin = new Padding(4, 3, 4, 3);
buttonAddToList.Name = "buttonAddToList";
buttonAddToList.Size = new Size(88, 23);
buttonAddToList.TabIndex = 9;
buttonAddToList.Text = "&Anfügen";
buttonAddToList.TextAlign = ContentAlignment.MiddleRight;
buttonAddToList.TextImageRelation = TextImageRelation.ImageBeforeText;
toolTip.SetToolTip(buttonAddToList, "Liste anfügen");
buttonAddToList.UseVisualStyleBackColor = true;
buttonAddToList.Click += ButtonAddToList_Click;
buttonAddToList.Enter += SetStatusbar_Enter;
buttonAddToList.Leave += ClearStatusbar_Leave;
buttonAddToList.MouseEnter += SetStatusbar_Enter;
buttonAddToList.MouseLeave += ClearStatusbar_Leave;
//
// backgroundWorker
//
backgroundWorker.WorkerReportsProgress = true;
backgroundWorker.WorkerSupportsCancellation = true;
//
// BatchForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(422, 456);
Controls.Add(buttonAddToList);
Controls.Add(statusStripInfo);
Controls.Add(statusStripStatistic);
Controls.Add(listView);
Controls.Add(buttonRedo);
Controls.Add(textBoxStringAfterNumber);
Controls.Add(textBoxStringBeforeNumber);
Controls.Add(buttonUndo);
Controls.Add(buttonCreateList);
Controls.Add(progressBar);
Controls.Add(labelProgess);
Controls.Add(buttonDeleteList);
Controls.Add(buttonSaveList);
Controls.Add(buttonCopyList);
Controls.Add(checkBoxFillWithZeros);
Controls.Add(numericUpDownNumberMaximum);
Controls.Add(labelNumberMax);
Controls.Add(numericUpDownNumberMinimum);
Controls.Add(labelNumberMin);
Controls.Add(labelStringAfterNumber);
Controls.Add(labelStringBeforeNumber);
Icon = (Icon)resources.GetObject("$this.Icon");
Name = "BatchForm";
Text = "Stapelverarbeitung";
Load += BatchForm_Load;
((System.ComponentModel.ISupportInitialize)numericUpDownNumberMaximum).EndInit();
((System.ComponentModel.ISupportInitialize)numericUpDownNumberMinimum).EndInit();
statusStripInfo.ResumeLayout(false);
statusStripInfo.PerformLayout();
statusStripStatistic.ResumeLayout(false);
statusStripStatistic.PerformLayout();
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button buttonRedo;
private TextBox textBoxStringAfterNumber;
private TextBox textBoxStringBeforeNumber;
private Button buttonUndo;
private Button buttonCreateList;
private ProgressBar progressBar;
private Label labelProgess;
private Button buttonDeleteList;
private Button buttonSaveList;
private Button buttonCopyList;
private CheckBox checkBoxFillWithZeros;
private NumericUpDown numericUpDownNumberMaximum;
private Label labelNumberMax;
private NumericUpDown numericUpDownNumberMinimum;
private Label labelNumberMin;
private Label labelStringAfterNumber;
private Label labelStringBeforeNumber;
private ListView listView;
private ColumnHeader columnHeader1;
private ColumnHeader columnHeader2;
private ColumnHeader columnHeader3;
private ColumnHeader columnHeader4;
private StatusStrip statusStripInfo;
private ToolStripStatusLabel toolStripStatusLabelInformation;
private StatusStrip statusStripStatistic;
private ToolStripStatusLabel toolStripStatusLabelSize;
private ToolStripStatusLabel toolStripStatusLabelLines;
private ToolStripStatusLabel toolStripStatusLabelTimeSpan;
private ToolStripStatusLabel toolStripStatusLabelLim;
private Button buttonAddToList;
private System.ComponentModel.BackgroundWorker backgroundWorker;
private ToolTip toolTip;
private ToolStripSplitButton toolStripSplitButtonStyle;
private ToolStripMenuItem toolStripMenuItemActivateVisualStyle;
private ToolStripMenuItem toolStripMenuItemDeactivateVisualStyle;
}
}