/dotnet/LoginForm.Designer.cs

http://sigma-h.googlecode.com/ · C# · 150 lines · 106 code · 6 blank · 38 comment · 3 complexity · 80a12c7a41510ba25e0a9a96c756325d MD5 · raw file

  1. namespace ActivityInfo
  2. {
  3. partial class LoginForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.emailTextBox = new System.Windows.Forms.TextBox();
  30. this.label2 = new System.Windows.Forms.Label();
  31. this.passwordTextBox = new System.Windows.Forms.TextBox();
  32. this.okButton = new System.Windows.Forms.Button();
  33. this.cancelButton = new System.Windows.Forms.Button();
  34. this.label3 = new System.Windows.Forms.Label();
  35. this.serverCombo = new System.Windows.Forms.ComboBox();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(48, 49);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(32, 13);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Email";
  46. //
  47. // emailTextBox
  48. //
  49. this.emailTextBox.Location = new System.Drawing.Point(111, 49);
  50. this.emailTextBox.Name = "emailTextBox";
  51. this.emailTextBox.Size = new System.Drawing.Size(148, 20);
  52. this.emailTextBox.TabIndex = 1;
  53. //
  54. // label2
  55. //
  56. this.label2.AutoSize = true;
  57. this.label2.Location = new System.Drawing.Point(48, 83);
  58. this.label2.Name = "label2";
  59. this.label2.Size = new System.Drawing.Size(53, 13);
  60. this.label2.TabIndex = 2;
  61. this.label2.Text = "Password";
  62. //
  63. // passwordTextBox
  64. //
  65. this.passwordTextBox.Location = new System.Drawing.Point(111, 80);
  66. this.passwordTextBox.Name = "passwordTextBox";
  67. this.passwordTextBox.Size = new System.Drawing.Size(148, 20);
  68. this.passwordTextBox.TabIndex = 3;
  69. this.passwordTextBox.UseSystemPasswordChar = true;
  70. //
  71. // okButton
  72. //
  73. this.okButton.Location = new System.Drawing.Point(207, 127);
  74. this.okButton.Name = "okButton";
  75. this.okButton.Size = new System.Drawing.Size(75, 23);
  76. this.okButton.TabIndex = 4;
  77. this.okButton.Text = "OK";
  78. this.okButton.UseVisualStyleBackColor = true;
  79. this.okButton.Click += new System.EventHandler(this.okButton_Click);
  80. //
  81. // cancelButton
  82. //
  83. this.cancelButton.Location = new System.Drawing.Point(288, 127);
  84. this.cancelButton.Name = "cancelButton";
  85. this.cancelButton.Size = new System.Drawing.Size(75, 23);
  86. this.cancelButton.TabIndex = 5;
  87. this.cancelButton.Text = "Cancel";
  88. this.cancelButton.UseVisualStyleBackColor = true;
  89. this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
  90. //
  91. // label3
  92. //
  93. this.label3.AutoSize = true;
  94. this.label3.Location = new System.Drawing.Point(48, 15);
  95. this.label3.Name = "label3";
  96. this.label3.Size = new System.Drawing.Size(38, 13);
  97. this.label3.TabIndex = 7;
  98. this.label3.Text = "Server";
  99. this.label3.Click += new System.EventHandler(this.label3_Click);
  100. //
  101. // serverCombo
  102. //
  103. this.serverCombo.FormattingEnabled = true;
  104. this.serverCombo.Items.AddRange(new object[] {
  105. "http://www.activityinfo.org/",
  106. "http://localhost:9090/"});
  107. this.serverCombo.Location = new System.Drawing.Point(111, 12);
  108. this.serverCombo.Name = "serverCombo";
  109. this.serverCombo.Size = new System.Drawing.Size(204, 21);
  110. this.serverCombo.TabIndex = 8;
  111. //
  112. // LoginForm
  113. //
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.ClientSize = new System.Drawing.Size(375, 164);
  117. this.ControlBox = false;
  118. this.Controls.Add(this.serverCombo);
  119. this.Controls.Add(this.label3);
  120. this.Controls.Add(this.cancelButton);
  121. this.Controls.Add(this.okButton);
  122. this.Controls.Add(this.passwordTextBox);
  123. this.Controls.Add(this.label2);
  124. this.Controls.Add(this.emailTextBox);
  125. this.Controls.Add(this.label1);
  126. this.MaximizeBox = false;
  127. this.MinimizeBox = false;
  128. this.Name = "LoginForm";
  129. this.Text = "ActivityInfo Login";
  130. this.Load += new System.EventHandler(this.LoginForm_Load);
  131. this.ResumeLayout(false);
  132. this.PerformLayout();
  133. }
  134. #endregion
  135. private System.Windows.Forms.Label label1;
  136. private System.Windows.Forms.TextBox emailTextBox;
  137. private System.Windows.Forms.Label label2;
  138. private System.Windows.Forms.TextBox passwordTextBox;
  139. private System.Windows.Forms.Button okButton;
  140. private System.Windows.Forms.Button cancelButton;
  141. private System.Windows.Forms.Label label3;
  142. private System.Windows.Forms.ComboBox serverCombo;
  143. }
  144. }