-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormItemIgnore.Designer.cs
More file actions
108 lines (103 loc) · 4.94 KB
/
Copy pathFormItemIgnore.Designer.cs
File metadata and controls
108 lines (103 loc) · 4.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
// Copyright © 2018-2024 ASM-SW
//asm-sw@outlook.com https://github.com/asm-sw
namespace DonorStatement
{
partial class FormItemIgnore
{
/// <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()
{
this.listItems = new System.Windows.Forms.ListBox();
this.textFileHasBeenRead = new System.Windows.Forms.TextBox();
this.buttonSelectAll = new System.Windows.Forms.Button();
this.buttonClearSelections = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// listItems
//
this.listItems.FormattingEnabled = true;
this.listItems.Location = new System.Drawing.Point(35, 41);
this.listItems.Margin = new System.Windows.Forms.Padding(2);
this.listItems.Name = "listItems";
this.listItems.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
this.listItems.Size = new System.Drawing.Size(601, 199);
this.listItems.TabIndex = 1;
//
// textFileHasBeenRead
//
this.textFileHasBeenRead.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.textFileHasBeenRead.Enabled = false;
this.textFileHasBeenRead.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.textFileHasBeenRead.Location = new System.Drawing.Point(77, 8);
this.textFileHasBeenRead.Multiline = true;
this.textFileHasBeenRead.Name = "textFileHasBeenRead";
this.textFileHasBeenRead.ReadOnly = true;
this.textFileHasBeenRead.Size = new System.Drawing.Size(383, 34);
this.textFileHasBeenRead.TabIndex = 2;
//
// buttonSelectAll
//
this.buttonSelectAll.Location = new System.Drawing.Point(35, 245);
this.buttonSelectAll.Name = "buttonSelectAll";
this.buttonSelectAll.Size = new System.Drawing.Size(75, 23);
this.buttonSelectAll.TabIndex = 3;
this.buttonSelectAll.Text = "Select All";
this.buttonSelectAll.UseVisualStyleBackColor = true;
this.buttonSelectAll.Click += new System.EventHandler(this.buttonSelectAll_Click);
//
// buttonClearSelections
//
this.buttonClearSelections.AutoSize = true;
this.buttonClearSelections.Location = new System.Drawing.Point(131, 245);
this.buttonClearSelections.Name = "buttonClearSelections";
this.buttonClearSelections.Size = new System.Drawing.Size(93, 23);
this.buttonClearSelections.TabIndex = 4;
this.buttonClearSelections.Text = "Clear Selections";
this.buttonClearSelections.UseVisualStyleBackColor = true;
this.buttonClearSelections.Click += new System.EventHandler(this.buttonClearSelections_Click);
//
// FormItemIgnore
//
this.AccessibleDescription = "Select Items to exclude from letter.";
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(658, 270);
this.Controls.Add(this.buttonClearSelections);
this.Controls.Add(this.buttonSelectAll);
this.Controls.Add(this.textFileHasBeenRead);
this.Controls.Add(this.listItems);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Margin = new System.Windows.Forms.Padding(2);
this.Name = "FormItemIgnore";
this.Text = "FormIgnoreItem";
this.VisibleChanged += new System.EventHandler(this.FormIgnoreItem_VisibleChanged);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ListBox listItems;
private System.Windows.Forms.TextBox textFileHasBeenRead;
private System.Windows.Forms.Button buttonSelectAll;
private System.Windows.Forms.Button buttonClearSelections;
}
}