Login.Designer.cs 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. namespace FietsClientV2
  2. {
  3. partial class Login
  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.label2 = new System.Windows.Forms.Label();
  30. this.UsernameBox = new System.Windows.Forms.TextBox();
  31. this.PasswordBox = new System.Windows.Forms.TextBox();
  32. this.SubmitButton = new System.Windows.Forms.Button();
  33. this.SuspendLayout();
  34. //
  35. // label1
  36. //
  37. this.label1.AutoSize = true;
  38. this.label1.Location = new System.Drawing.Point(12, 9);
  39. this.label1.Name = "label1";
  40. this.label1.Size = new System.Drawing.Size(58, 13);
  41. this.label1.TabIndex = 0;
  42. this.label1.Text = "Username:";
  43. //
  44. // label2
  45. //
  46. this.label2.AutoSize = true;
  47. this.label2.Location = new System.Drawing.Point(12, 39);
  48. this.label2.Name = "label2";
  49. this.label2.Size = new System.Drawing.Size(56, 13);
  50. this.label2.TabIndex = 1;
  51. this.label2.Text = "Password:";
  52. //
  53. // UsernameBox
  54. //
  55. this.UsernameBox.Location = new System.Drawing.Point(76, 6);
  56. this.UsernameBox.Name = "UsernameBox";
  57. this.UsernameBox.Size = new System.Drawing.Size(223, 20);
  58. this.UsernameBox.TabIndex = 2;
  59. //
  60. // PasswordBox
  61. //
  62. this.PasswordBox.Location = new System.Drawing.Point(76, 36);
  63. this.PasswordBox.Name = "PasswordBox";
  64. this.PasswordBox.PasswordChar = '♥';
  65. this.PasswordBox.Size = new System.Drawing.Size(223, 20);
  66. this.PasswordBox.TabIndex = 3;
  67. //
  68. // SubmitButton
  69. //
  70. this.SubmitButton.Location = new System.Drawing.Point(224, 79);
  71. this.SubmitButton.Name = "SubmitButton";
  72. this.SubmitButton.Size = new System.Drawing.Size(75, 23);
  73. this.SubmitButton.TabIndex = 4;
  74. this.SubmitButton.Text = "Submit";
  75. this.SubmitButton.UseVisualStyleBackColor = true;
  76. this.SubmitButton.Click += new System.EventHandler(this.SubmitButton_Click);
  77. //
  78. // Login
  79. //
  80. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  81. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  82. this.ClientSize = new System.Drawing.Size(311, 114);
  83. this.Controls.Add(this.SubmitButton);
  84. this.Controls.Add(this.PasswordBox);
  85. this.Controls.Add(this.UsernameBox);
  86. this.Controls.Add(this.label2);
  87. this.Controls.Add(this.label1);
  88. this.Name = "Login";
  89. this.Text = "Login";
  90. this.ResumeLayout(false);
  91. this.PerformLayout();
  92. }
  93. #endregion
  94. private System.Windows.Forms.Label label1;
  95. private System.Windows.Forms.Label label2;
  96. private System.Windows.Forms.TextBox UsernameBox;
  97. private System.Windows.Forms.TextBox PasswordBox;
  98. private System.Windows.Forms.Button SubmitButton;
  99. }
  100. }