forked from Ken98045/On-Guard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmailAddressesDialog.Designer.cs
140 lines (135 loc) · 5.66 KB
/
EmailAddressesDialog.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
namespace SAAI
{
partial class EmailAddressesDialog
{
/// <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.AddButton = new System.Windows.Forms.Button();
this.EditButton = new System.Windows.Forms.Button();
this.DeleteButton = new System.Windows.Forms.Button();
this.oKButton = new System.Windows.Forms.Button();
this.cancelButton = new System.Windows.Forms.Button();
this.emailAddressList = new System.Windows.Forms.ListView();
this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.SuspendLayout();
//
// AddButton
//
this.AddButton.Location = new System.Drawing.Point(321, 55);
this.AddButton.Name = "AddButton";
this.AddButton.Size = new System.Drawing.Size(75, 23);
this.AddButton.TabIndex = 0;
this.AddButton.Text = "Add";
this.AddButton.UseVisualStyleBackColor = true;
this.AddButton.Click += new System.EventHandler(this.AddButton_Click);
//
// EditButton
//
this.EditButton.Enabled = false;
this.EditButton.Location = new System.Drawing.Point(321, 95);
this.EditButton.Name = "EditButton";
this.EditButton.Size = new System.Drawing.Size(75, 23);
this.EditButton.TabIndex = 1;
this.EditButton.Text = "Edit";
this.EditButton.UseVisualStyleBackColor = true;
this.EditButton.Click += new System.EventHandler(this.EditButton_Click);
//
// DeleteButton
//
this.DeleteButton.Enabled = false;
this.DeleteButton.Location = new System.Drawing.Point(321, 135);
this.DeleteButton.Name = "DeleteButton";
this.DeleteButton.Size = new System.Drawing.Size(75, 23);
this.DeleteButton.TabIndex = 2;
this.DeleteButton.Text = "Delete";
this.DeleteButton.UseVisualStyleBackColor = true;
this.DeleteButton.Click += new System.EventHandler(this.DeleteButton_Click);
//
// OKButton
//
this.oKButton.Location = new System.Drawing.Point(72, 196);
this.oKButton.Name = "OKButton";
this.oKButton.Size = new System.Drawing.Size(75, 23);
this.oKButton.TabIndex = 3;
this.oKButton.Text = "OK";
this.oKButton.UseVisualStyleBackColor = true;
this.oKButton.Click += new System.EventHandler(this.OKButton_Click);
//
// CancelButton
//
this.cancelButton.Location = new System.Drawing.Point(170, 196);
this.cancelButton.Name = "CancelButton";
this.cancelButton.Size = new System.Drawing.Size(75, 23);
this.cancelButton.TabIndex = 4;
this.cancelButton.Text = "Cancel";
this.cancelButton.UseVisualStyleBackColor = true;
this.cancelButton.Click += new System.EventHandler(this.CancelButton_Click);
//
// emailAddressList
//
this.emailAddressList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.columnHeader1});
this.emailAddressList.FullRowSelect = true;
this.emailAddressList.GridLines = true;
this.emailAddressList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.emailAddressList.HideSelection = false;
this.emailAddressList.Location = new System.Drawing.Point(12, 27);
this.emailAddressList.MultiSelect = false;
this.emailAddressList.Name = "emailAddressList";
this.emailAddressList.Size = new System.Drawing.Size(298, 148);
this.emailAddressList.TabIndex = 5;
this.emailAddressList.UseCompatibleStateImageBehavior = false;
this.emailAddressList.View = System.Windows.Forms.View.Details;
this.emailAddressList.SelectedIndexChanged += new System.EventHandler(this.OnSelectedIndexChanged);
//
// columnHeader1
//
this.columnHeader1.Text = "Email Address";
this.columnHeader1.Width = 277;
//
// EmailAddressesDialog
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(410, 234);
this.Controls.Add(this.emailAddressList);
this.Controls.Add(this.cancelButton);
this.Controls.Add(this.oKButton);
this.Controls.Add(this.DeleteButton);
this.Controls.Add(this.EditButton);
this.Controls.Add(this.AddButton);
this.Name = "EmailAddressesDialog";
this.Text = "Add/Edit/Delete Email Addresses";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button AddButton;
private System.Windows.Forms.Button EditButton;
private System.Windows.Forms.Button DeleteButton;
private System.Windows.Forms.Button oKButton;
private System.Windows.Forms.Button cancelButton;
private System.Windows.Forms.ListView emailAddressList;
private System.Windows.Forms.ColumnHeader columnHeader1;
}
}