Home.Designer.cs 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. namespace ShareWifi.Views
  2. {
  3. partial class HomeControl
  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 Component 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.label4 = new System.Windows.Forms.Label();
  29. this.panel2 = new System.Windows.Forms.Panel();
  30. this.picQR = new System.Windows.Forms.PictureBox();
  31. this.btnGenerate = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. this.lbPWD = new System.Windows.Forms.Label();
  35. this.lbSSID = new System.Windows.Forms.Label();
  36. this.panel2.SuspendLayout();
  37. ((System.ComponentModel.ISupportInitialize)(this.picQR)).BeginInit();
  38. this.SuspendLayout();
  39. //
  40. // label4
  41. //
  42. this.label4.AutoSize = true;
  43. this.label4.Font = new System.Drawing.Font("Sitka Banner", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  44. this.label4.ForeColor = System.Drawing.Color.Red;
  45. this.label4.Location = new System.Drawing.Point(81, 351);
  46. this.label4.Name = "label4";
  47. this.label4.Size = new System.Drawing.Size(308, 23);
  48. this.label4.TabIndex = 4;
  49. this.label4.Text = "Mobile Phone Scan the QRCode to Connect Wifi.";
  50. //
  51. // panel2
  52. //
  53. this.panel2.BackColor = System.Drawing.Color.White;
  54. this.panel2.Controls.Add(this.picQR);
  55. this.panel2.Location = new System.Drawing.Point(85, 23);
  56. this.panel2.Name = "panel2";
  57. this.panel2.Size = new System.Drawing.Size(228, 228);
  58. this.panel2.TabIndex = 3;
  59. //
  60. // picQR
  61. //
  62. this.picQR.Location = new System.Drawing.Point(0, 0);
  63. this.picQR.Name = "picQR";
  64. this.picQR.Size = new System.Drawing.Size(228, 228);
  65. this.picQR.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
  66. this.picQR.TabIndex = 0;
  67. this.picQR.TabStop = false;
  68. //
  69. // btnGenerate
  70. //
  71. this.btnGenerate.FlatAppearance.BorderSize = 0;
  72. this.btnGenerate.ForeColor = System.Drawing.Color.Black;
  73. this.btnGenerate.Location = new System.Drawing.Point(109, 289);
  74. this.btnGenerate.Name = "btnGenerate";
  75. this.btnGenerate.Size = new System.Drawing.Size(174, 38);
  76. this.btnGenerate.TabIndex = 2;
  77. this.btnGenerate.Text = "Generate Wifi QRCode";
  78. this.btnGenerate.UseVisualStyleBackColor = true;
  79. this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
  80. //
  81. // label1
  82. //
  83. this.label1.AutoSize = true;
  84. this.label1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  85. this.label1.Location = new System.Drawing.Point(398, 108);
  86. this.label1.Name = "label1";
  87. this.label1.Size = new System.Drawing.Size(46, 21);
  88. this.label1.TabIndex = 5;
  89. this.label1.Text = "SSID:";
  90. //
  91. // label2
  92. //
  93. this.label2.AutoSize = true;
  94. this.label2.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  95. this.label2.Location = new System.Drawing.Point(347, 138);
  96. this.label2.Name = "label2";
  97. this.label2.Size = new System.Drawing.Size(97, 21);
  98. this.label2.TabIndex = 5;
  99. this.label2.Text = "PASSWORD:";
  100. //
  101. // lbPWD
  102. //
  103. this.lbPWD.AutoSize = true;
  104. this.lbPWD.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  105. this.lbPWD.Location = new System.Drawing.Point(460, 138);
  106. this.lbPWD.Name = "lbPWD";
  107. this.lbPWD.Size = new System.Drawing.Size(40, 21);
  108. this.lbPWD.TabIndex = 5;
  109. this.lbPWD.Text = "null";
  110. //
  111. // lbSSID
  112. //
  113. this.lbSSID.AutoSize = true;
  114. this.lbSSID.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  115. this.lbSSID.Location = new System.Drawing.Point(460, 108);
  116. this.lbSSID.Name = "lbSSID";
  117. this.lbSSID.Size = new System.Drawing.Size(40, 21);
  118. this.lbSSID.TabIndex = 5;
  119. this.lbSSID.Text = "null";
  120. //
  121. // HomeControl
  122. //
  123. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  124. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  125. this.Controls.Add(this.lbSSID);
  126. this.Controls.Add(this.lbPWD);
  127. this.Controls.Add(this.label2);
  128. this.Controls.Add(this.label1);
  129. this.Controls.Add(this.label4);
  130. this.Controls.Add(this.panel2);
  131. this.Controls.Add(this.btnGenerate);
  132. this.Name = "HomeControl";
  133. this.Size = new System.Drawing.Size(604, 413);
  134. this.Load += new System.EventHandler(this.HomeControl_Load);
  135. this.panel2.ResumeLayout(false);
  136. ((System.ComponentModel.ISupportInitialize)(this.picQR)).EndInit();
  137. this.ResumeLayout(false);
  138. this.PerformLayout();
  139. }
  140. #endregion
  141. private System.Windows.Forms.Label label4;
  142. private System.Windows.Forms.Panel panel2;
  143. private System.Windows.Forms.PictureBox picQR;
  144. private System.Windows.Forms.Button btnGenerate;
  145. private System.Windows.Forms.Label label1;
  146. private System.Windows.Forms.Label label2;
  147. private System.Windows.Forms.Label lbPWD;
  148. private System.Windows.Forms.Label lbSSID;
  149. }
  150. }