/dotnet/LoginForm.Designer.cs
http://sigma-h.googlecode.com/ · C# · 150 lines · 106 code · 6 blank · 38 comment · 3 complexity · 80a12c7a41510ba25e0a9a96c756325d MD5 · raw file
- namespace ActivityInfo
- {
- partial class LoginForm
- {
- /// <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.label1 = new System.Windows.Forms.Label();
- this.emailTextBox = new System.Windows.Forms.TextBox();
- this.label2 = new System.Windows.Forms.Label();
- this.passwordTextBox = new System.Windows.Forms.TextBox();
- this.okButton = new System.Windows.Forms.Button();
- this.cancelButton = new System.Windows.Forms.Button();
- this.label3 = new System.Windows.Forms.Label();
- this.serverCombo = new System.Windows.Forms.ComboBox();
- this.SuspendLayout();
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(48, 49);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(32, 13);
- this.label1.TabIndex = 0;
- this.label1.Text = "Email";
- //
- // emailTextBox
- //
- this.emailTextBox.Location = new System.Drawing.Point(111, 49);
- this.emailTextBox.Name = "emailTextBox";
- this.emailTextBox.Size = new System.Drawing.Size(148, 20);
- this.emailTextBox.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(48, 83);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(53, 13);
- this.label2.TabIndex = 2;
- this.label2.Text = "Password";
- //
- // passwordTextBox
- //
- this.passwordTextBox.Location = new System.Drawing.Point(111, 80);
- this.passwordTextBox.Name = "passwordTextBox";
- this.passwordTextBox.Size = new System.Drawing.Size(148, 20);
- this.passwordTextBox.TabIndex = 3;
- this.passwordTextBox.UseSystemPasswordChar = true;
- //
- // okButton
- //
- this.okButton.Location = new System.Drawing.Point(207, 127);
- this.okButton.Name = "okButton";
- this.okButton.Size = new System.Drawing.Size(75, 23);
- this.okButton.TabIndex = 4;
- 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(288, 127);
- this.cancelButton.Name = "cancelButton";
- this.cancelButton.Size = new System.Drawing.Size(75, 23);
- this.cancelButton.TabIndex = 5;
- this.cancelButton.Text = "Cancel";
- this.cancelButton.UseVisualStyleBackColor = true;
- this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(48, 15);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(38, 13);
- this.label3.TabIndex = 7;
- this.label3.Text = "Server";
- this.label3.Click += new System.EventHandler(this.label3_Click);
- //
- // serverCombo
- //
- this.serverCombo.FormattingEnabled = true;
- this.serverCombo.Items.AddRange(new object[] {
- "http://www.activityinfo.org/",
- "http://localhost:9090/"});
- this.serverCombo.Location = new System.Drawing.Point(111, 12);
- this.serverCombo.Name = "serverCombo";
- this.serverCombo.Size = new System.Drawing.Size(204, 21);
- this.serverCombo.TabIndex = 8;
- //
- // LoginForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(375, 164);
- this.ControlBox = false;
- this.Controls.Add(this.serverCombo);
- this.Controls.Add(this.label3);
- this.Controls.Add(this.cancelButton);
- this.Controls.Add(this.okButton);
- this.Controls.Add(this.passwordTextBox);
- this.Controls.Add(this.label2);
- this.Controls.Add(this.emailTextBox);
- this.Controls.Add(this.label1);
- this.MaximizeBox = false;
- this.MinimizeBox = false;
- this.Name = "LoginForm";
- this.Text = "ActivityInfo Login";
- this.Load += new System.EventHandler(this.LoginForm_Load);
- this.ResumeLayout(false);
- this.PerformLayout();
-
- }
-
- #endregion
-
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.TextBox emailTextBox;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.TextBox passwordTextBox;
- private System.Windows.Forms.Button okButton;
- private System.Windows.Forms.Button cancelButton;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.ComboBox serverCombo;
- }
- }