UserLoginView.Designer.cs 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. namespace Aitex.Core.Backend
  2. {
  3. partial class UserLoginView
  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.textBoxAccountId = new System.Windows.Forms.TextBox();
  29. this.textBoxPassword = new System.Windows.Forms.TextBox();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.label2 = new System.Windows.Forms.Label();
  32. this.buttonLogin = new System.Windows.Forms.Button();
  33. this.buttonCancel = new System.Windows.Forms.Button();
  34. this.groupBox1 = new System.Windows.Forms.GroupBox();
  35. this.groupBox1.SuspendLayout();
  36. this.SuspendLayout();
  37. //
  38. // textBoxAccountId
  39. //
  40. this.textBoxAccountId.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  41. this.textBoxAccountId.Location = new System.Drawing.Point(144, 33);
  42. this.textBoxAccountId.Margin = new System.Windows.Forms.Padding(4);
  43. this.textBoxAccountId.Name = "textBoxAccountId";
  44. this.textBoxAccountId.Size = new System.Drawing.Size(148, 25);
  45. this.textBoxAccountId.TabIndex = 0;
  46. this.textBoxAccountId.Text = "admin";
  47. //
  48. // textBoxPassword
  49. //
  50. this.textBoxPassword.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  51. this.textBoxPassword.Location = new System.Drawing.Point(144, 74);
  52. this.textBoxPassword.Margin = new System.Windows.Forms.Padding(4);
  53. this.textBoxPassword.Name = "textBoxPassword";
  54. this.textBoxPassword.Size = new System.Drawing.Size(148, 25);
  55. this.textBoxPassword.TabIndex = 1;
  56. this.textBoxPassword.UseSystemPasswordChar = true;
  57. //
  58. // label1
  59. //
  60. this.label1.AutoSize = true;
  61. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  62. this.label1.Location = new System.Drawing.Point(52, 36);
  63. this.label1.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  64. this.label1.Name = "label1";
  65. this.label1.Size = new System.Drawing.Size(64, 19);
  66. this.label1.TabIndex = 2;
  67. this.label1.Text = "Account:";
  68. //
  69. // label2
  70. //
  71. this.label2.AutoSize = true;
  72. this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  73. this.label2.Location = new System.Drawing.Point(52, 77);
  74. this.label2.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  75. this.label2.Name = "label2";
  76. this.label2.Size = new System.Drawing.Size(70, 19);
  77. this.label2.TabIndex = 3;
  78. this.label2.Text = "Password:";
  79. //
  80. // buttonLogin
  81. //
  82. this.buttonLogin.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  83. this.buttonLogin.Location = new System.Drawing.Point(93, 19);
  84. this.buttonLogin.Name = "buttonLogin";
  85. this.buttonLogin.Size = new System.Drawing.Size(87, 26);
  86. this.buttonLogin.TabIndex = 0;
  87. this.buttonLogin.Text = "Login";
  88. this.buttonLogin.UseVisualStyleBackColor = true;
  89. this.buttonLogin.Click += new System.EventHandler(this.buttonLogin_Click);
  90. //
  91. // buttonCancel
  92. //
  93. this.buttonCancel.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  94. this.buttonCancel.Location = new System.Drawing.Point(212, 19);
  95. this.buttonCancel.Name = "buttonCancel";
  96. this.buttonCancel.Size = new System.Drawing.Size(87, 26);
  97. this.buttonCancel.TabIndex = 1;
  98. this.buttonCancel.Text = "Cancel";
  99. this.buttonCancel.UseVisualStyleBackColor = true;
  100. this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
  101. //
  102. // groupBox1
  103. //
  104. this.groupBox1.Controls.Add(this.buttonCancel);
  105. this.groupBox1.Controls.Add(this.buttonLogin);
  106. this.groupBox1.Location = new System.Drawing.Point(-24, 114);
  107. this.groupBox1.Name = "groupBox1";
  108. this.groupBox1.Size = new System.Drawing.Size(397, 64);
  109. this.groupBox1.TabIndex = 4;
  110. this.groupBox1.TabStop = false;
  111. //
  112. // UserLoginView
  113. //
  114. this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 18F);
  115. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  116. this.ClientSize = new System.Drawing.Size(363, 171);
  117. this.Controls.Add(this.groupBox1);
  118. this.Controls.Add(this.label2);
  119. this.Controls.Add(this.label1);
  120. this.Controls.Add(this.textBoxPassword);
  121. this.Controls.Add(this.textBoxAccountId);
  122. this.Font = new System.Drawing.Font("Verdana", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  123. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
  124. this.Margin = new System.Windows.Forms.Padding(4);
  125. this.MaximizeBox = false;
  126. this.Name = "UserLoginView";
  127. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  128. this.Text = "Login";
  129. this.groupBox1.ResumeLayout(false);
  130. this.ResumeLayout(false);
  131. this.PerformLayout();
  132. }
  133. #endregion
  134. private System.Windows.Forms.TextBox textBoxAccountId;
  135. private System.Windows.Forms.TextBox textBoxPassword;
  136. private System.Windows.Forms.Label label1;
  137. private System.Windows.Forms.Label label2;
  138. private System.Windows.Forms.Button buttonLogin;
  139. private System.Windows.Forms.Button buttonCancel;
  140. private System.Windows.Forms.GroupBox groupBox1;
  141. }
  142. }