corrade-vassal – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | vero | 1 | namespace groupmanager |
2 | { |
||
3 | partial class frmGroupManager |
||
4 | { |
||
5 | /// <summary> |
||
6 | /// Required designer variable. |
||
7 | /// </summary> |
||
8 | private System.ComponentModel.IContainer components = null; |
||
9 | |||
10 | /// <summary> |
||
11 | /// Clean up any resources being used. |
||
12 | /// </summary> |
||
13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code |
||
24 | |||
25 | /// <summary> |
||
26 | /// Required method for Designer support - do not modify |
||
27 | /// the contents of this method with the code editor. |
||
28 | /// </summary> |
||
29 | private void InitializeComponent() |
||
30 | { |
||
31 | this.groupBox = new System.Windows.Forms.GroupBox(); |
||
32 | this.lstGroups = new System.Windows.Forms.ListBox(); |
||
33 | this.grpLogin = new System.Windows.Forms.GroupBox(); |
||
34 | this.label3 = new System.Windows.Forms.Label(); |
||
35 | this.label2 = new System.Windows.Forms.Label(); |
||
36 | this.label1 = new System.Windows.Forms.Label(); |
||
37 | this.txtPassword = new System.Windows.Forms.TextBox(); |
||
38 | this.txtLastName = new System.Windows.Forms.TextBox(); |
||
39 | this.cmdConnect = new System.Windows.Forms.Button(); |
||
40 | this.txtFirstName = new System.Windows.Forms.TextBox(); |
||
41 | this.cmdLeave = new System.Windows.Forms.Button(); |
||
42 | this.cmdCreate = new System.Windows.Forms.Button(); |
||
43 | this.cmdActivate = new System.Windows.Forms.Button(); |
||
44 | this.cmdInfo = new System.Windows.Forms.Button(); |
||
45 | this.groupBox.SuspendLayout(); |
||
46 | this.grpLogin.SuspendLayout(); |
||
47 | this.SuspendLayout(); |
||
48 | // |
||
49 | // groupBox |
||
50 | // |
||
51 | this.groupBox.Controls.Add(this.cmdInfo); |
||
52 | this.groupBox.Controls.Add(this.cmdActivate); |
||
53 | this.groupBox.Controls.Add(this.cmdCreate); |
||
54 | this.groupBox.Controls.Add(this.cmdLeave); |
||
55 | this.groupBox.Controls.Add(this.lstGroups); |
||
56 | this.groupBox.Enabled = false; |
||
57 | this.groupBox.Location = new System.Drawing.Point(12, 12); |
||
58 | this.groupBox.Name = "groupBox"; |
||
59 | this.groupBox.Size = new System.Drawing.Size(419, 214); |
||
60 | this.groupBox.TabIndex = 0; |
||
61 | this.groupBox.TabStop = false; |
||
62 | this.groupBox.Text = "Groups"; |
||
63 | // |
||
64 | // lstGroups |
||
65 | // |
||
66 | this.lstGroups.FormattingEnabled = true; |
||
67 | this.lstGroups.Location = new System.Drawing.Point(19, 31); |
||
68 | this.lstGroups.Name = "lstGroups"; |
||
69 | this.lstGroups.Size = new System.Drawing.Size(384, 134); |
||
70 | this.lstGroups.TabIndex = 0; |
||
71 | this.lstGroups.SelectedIndexChanged += new System.EventHandler(this.lstGroups_SelectedIndexChanged); |
||
72 | // |
||
73 | // grpLogin |
||
74 | // |
||
75 | this.grpLogin.Controls.Add(this.label3); |
||
76 | this.grpLogin.Controls.Add(this.label2); |
||
77 | this.grpLogin.Controls.Add(this.label1); |
||
78 | this.grpLogin.Controls.Add(this.txtPassword); |
||
79 | this.grpLogin.Controls.Add(this.txtLastName); |
||
80 | this.grpLogin.Controls.Add(this.cmdConnect); |
||
81 | this.grpLogin.Controls.Add(this.txtFirstName); |
||
82 | this.grpLogin.Location = new System.Drawing.Point(12, 232); |
||
83 | this.grpLogin.Name = "grpLogin"; |
||
84 | this.grpLogin.Size = new System.Drawing.Size(419, 108); |
||
85 | this.grpLogin.TabIndex = 51; |
||
86 | this.grpLogin.TabStop = false; |
||
87 | // |
||
88 | // label3 |
||
89 | // |
||
90 | this.label3.Location = new System.Drawing.Point(280, 24); |
||
91 | this.label3.Name = "label3"; |
||
92 | this.label3.Size = new System.Drawing.Size(120, 16); |
||
93 | this.label3.TabIndex = 50; |
||
94 | this.label3.Text = "Password"; |
||
95 | // |
||
96 | // label2 |
||
97 | // |
||
98 | this.label2.Location = new System.Drawing.Point(152, 24); |
||
99 | this.label2.Name = "label2"; |
||
100 | this.label2.Size = new System.Drawing.Size(120, 16); |
||
101 | this.label2.TabIndex = 50; |
||
102 | this.label2.Text = "Last Name"; |
||
103 | // |
||
104 | // label1 |
||
105 | // |
||
106 | this.label1.Location = new System.Drawing.Point(16, 24); |
||
107 | this.label1.Name = "label1"; |
||
108 | this.label1.Size = new System.Drawing.Size(120, 16); |
||
109 | this.label1.TabIndex = 50; |
||
110 | this.label1.Text = "First Name"; |
||
111 | // |
||
112 | // txtPassword |
||
113 | // |
||
114 | this.txtPassword.Location = new System.Drawing.Point(280, 40); |
||
115 | this.txtPassword.Name = "txtPassword"; |
||
116 | this.txtPassword.PasswordChar = '*'; |
||
117 | this.txtPassword.Size = new System.Drawing.Size(120, 20); |
||
118 | this.txtPassword.TabIndex = 2; |
||
119 | // |
||
120 | // txtLastName |
||
121 | // |
||
122 | this.txtLastName.Location = new System.Drawing.Point(152, 40); |
||
123 | this.txtLastName.Name = "txtLastName"; |
||
124 | this.txtLastName.Size = new System.Drawing.Size(112, 20); |
||
125 | this.txtLastName.TabIndex = 1; |
||
126 | // |
||
127 | // cmdConnect |
||
128 | // |
||
129 | this.cmdConnect.Location = new System.Drawing.Point(280, 66); |
||
130 | this.cmdConnect.Name = "cmdConnect"; |
||
131 | this.cmdConnect.Size = new System.Drawing.Size(120, 24); |
||
132 | this.cmdConnect.TabIndex = 3; |
||
133 | this.cmdConnect.Text = "Connect"; |
||
134 | this.cmdConnect.Click += new System.EventHandler(this.cmdConnect_Click); |
||
135 | // |
||
136 | // txtFirstName |
||
137 | // |
||
138 | this.txtFirstName.Location = new System.Drawing.Point(16, 40); |
||
139 | this.txtFirstName.Name = "txtFirstName"; |
||
140 | this.txtFirstName.Size = new System.Drawing.Size(120, 20); |
||
141 | this.txtFirstName.TabIndex = 0; |
||
142 | // |
||
143 | // cmdLeave |
||
144 | // |
||
145 | this.cmdLeave.Enabled = false; |
||
146 | this.cmdLeave.Location = new System.Drawing.Point(313, 174); |
||
147 | this.cmdLeave.Name = "cmdLeave"; |
||
148 | this.cmdLeave.Size = new System.Drawing.Size(90, 23); |
||
149 | this.cmdLeave.TabIndex = 7; |
||
150 | this.cmdLeave.Text = "Leave"; |
||
151 | this.cmdLeave.UseVisualStyleBackColor = true; |
||
152 | // |
||
153 | // cmdCreate |
||
154 | // |
||
155 | this.cmdCreate.Location = new System.Drawing.Point(19, 174); |
||
156 | this.cmdCreate.Name = "cmdCreate"; |
||
157 | this.cmdCreate.Size = new System.Drawing.Size(90, 23); |
||
158 | this.cmdCreate.TabIndex = 8; |
||
159 | this.cmdCreate.Text = "Create"; |
||
160 | this.cmdCreate.UseVisualStyleBackColor = true; |
||
161 | // |
||
162 | // cmdActivate |
||
163 | // |
||
164 | this.cmdActivate.Enabled = false; |
||
165 | this.cmdActivate.Location = new System.Drawing.Point(116, 174); |
||
166 | this.cmdActivate.Name = "cmdActivate"; |
||
167 | this.cmdActivate.Size = new System.Drawing.Size(90, 23); |
||
168 | this.cmdActivate.TabIndex = 9; |
||
169 | this.cmdActivate.Text = "Activate"; |
||
170 | this.cmdActivate.UseVisualStyleBackColor = true; |
||
171 | // |
||
172 | // cmdInfo |
||
173 | // |
||
174 | this.cmdInfo.Enabled = false; |
||
175 | this.cmdInfo.Location = new System.Drawing.Point(216, 174); |
||
176 | this.cmdInfo.Name = "cmdInfo"; |
||
177 | this.cmdInfo.Size = new System.Drawing.Size(90, 23); |
||
178 | this.cmdInfo.TabIndex = 10; |
||
179 | this.cmdInfo.Text = "Info"; |
||
180 | this.cmdInfo.UseVisualStyleBackColor = true; |
||
181 | this.cmdInfo.Click += new System.EventHandler(this.cmdInfo_Click); |
||
182 | // |
||
183 | // frmGroupManager |
||
184 | // |
||
185 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
||
186 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
||
187 | this.ClientSize = new System.Drawing.Size(445, 351); |
||
188 | this.Controls.Add(this.grpLogin); |
||
189 | this.Controls.Add(this.groupBox); |
||
190 | this.MaximizeBox = false; |
||
191 | this.MaximumSize = new System.Drawing.Size(453, 378); |
||
192 | this.MinimumSize = new System.Drawing.Size(453, 378); |
||
193 | this.Name = "frmGroupManager"; |
||
194 | this.Text = "Group Manager"; |
||
195 | //this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmGroupManager_FormClosing); |
||
196 | this.groupBox.ResumeLayout(false); |
||
197 | this.grpLogin.ResumeLayout(false); |
||
198 | this.grpLogin.PerformLayout(); |
||
199 | this.ResumeLayout(false); |
||
200 | |||
201 | } |
||
202 | |||
203 | #endregion |
||
204 | |||
205 | private System.Windows.Forms.GroupBox groupBox; |
||
206 | private System.Windows.Forms.ListBox lstGroups; |
||
207 | private System.Windows.Forms.GroupBox grpLogin; |
||
208 | private System.Windows.Forms.Label label3; |
||
209 | private System.Windows.Forms.Label label2; |
||
210 | private System.Windows.Forms.Label label1; |
||
211 | private System.Windows.Forms.TextBox txtPassword; |
||
212 | private System.Windows.Forms.TextBox txtLastName; |
||
213 | private System.Windows.Forms.Button cmdConnect; |
||
214 | private System.Windows.Forms.TextBox txtFirstName; |
||
215 | private System.Windows.Forms.Button cmdInfo; |
||
216 | private System.Windows.Forms.Button cmdActivate; |
||
217 | private System.Windows.Forms.Button cmdCreate; |
||
218 | private System.Windows.Forms.Button cmdLeave; |
||
219 | } |
||
220 | } |