Guest User

Untitled

a guest
Jan 27th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.15 KB | None | 0 0
  1. namespace Incursion_Client
  2. {
  3. partial class Form1
  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.label1 = new System.Windows.Forms.Label();
  32. this.textBox1 = new System.Windows.Forms.TextBox();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.textBox2 = new System.Windows.Forms.TextBox();
  35. this.button1 = new System.Windows.Forms.Button();
  36. this.SuspendLayout();
  37. //
  38. // label1
  39. //
  40. this.label1.AutoSize = true;
  41. this.label1.Location = new System.Drawing.Point(12, 9);
  42. this.label1.Name = "label1";
  43. this.label1.Size = new System.Drawing.Size(58, 13);
  44. this.label1.TabIndex = 0;
  45. this.label1.Text = "Username:";
  46. //
  47. // textBox1
  48. //
  49. this.textBox1.Location = new System.Drawing.Point(12, 25);
  50. this.textBox1.Name = "textBox1";
  51. this.textBox1.Size = new System.Drawing.Size(149, 20);
  52. this.textBox1.TabIndex = 1;
  53. //
  54. // label2
  55. //
  56. this.label2.AutoSize = true;
  57. this.label2.Location = new System.Drawing.Point(12, 48);
  58. this.label2.Name = "label2";
  59. this.label2.Size = new System.Drawing.Size(56, 13);
  60. this.label2.TabIndex = 2;
  61. this.label2.Text = "Password:";
  62. //
  63. // textBox2
  64. //
  65. this.textBox2.Location = new System.Drawing.Point(12, 64);
  66. this.textBox2.Name = "textBox2";
  67. this.textBox2.Size = new System.Drawing.Size(149, 20);
  68. this.textBox2.TabIndex = 3;
  69. //
  70. // button1
  71. //
  72. this.button1.Location = new System.Drawing.Point(12, 90);
  73. this.button1.Name = "button1";
  74. this.button1.Size = new System.Drawing.Size(149, 23);
  75. this.button1.TabIndex = 4;
  76. this.button1.Text = "Login";
  77. this.button1.UseVisualStyleBackColor = true;
  78. this.button1.Click += new System.EventHandler(this.button1_Click);
  79. //
  80. // Form1
  81. //
  82. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  83. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  84. this.ClientSize = new System.Drawing.Size(173, 125);
  85. this.Controls.Add(this.button1);
  86. this.Controls.Add(this.textBox2);
  87. this.Controls.Add(this.label2);
  88. this.Controls.Add(this.textBox1);
  89. this.Controls.Add(this.label1);
  90. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  91. this.MaximizeBox = false;
  92. this.MinimizeBox = false;
  93. this.Name = "Form1";
  94. this.Text = "Login Form";
  95. this.Load += new System.EventHandler(this.Form1_Load);
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98.  
  99. }
  100.  
  101. #endregion
  102.  
  103. private System.Windows.Forms.Label label1;
  104. private System.Windows.Forms.TextBox textBox1;
  105. private System.Windows.Forms.Label label2;
  106. private System.Windows.Forms.TextBox textBox2;
  107. private System.Windows.Forms.Button button1;
  108. }
  109. }
Add Comment
Please, Sign In to add comment