MainForm.Designer.cs 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  1. namespace ShareWifi
  2. {
  3. partial class MainForm
  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.plLeftMenu = new System.Windows.Forms.Panel();
  29. this.plTitle = new System.Windows.Forms.Panel();
  30. this.label1 = new System.Windows.Forms.Label();
  31. this.plContent = new System.Windows.Forms.Panel();
  32. this.btnAboutMe = new System.Windows.Forms.Button();
  33. this.btnHome = new System.Windows.Forms.Button();
  34. this.btnMini = new System.Windows.Forms.Button();
  35. this.btnClose = new System.Windows.Forms.Button();
  36. this.plLeftMenu.SuspendLayout();
  37. this.plTitle.SuspendLayout();
  38. this.SuspendLayout();
  39. //
  40. // plLeftMenu
  41. //
  42. this.plLeftMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(50)))));
  43. this.plLeftMenu.Controls.Add(this.btnAboutMe);
  44. this.plLeftMenu.Controls.Add(this.btnHome);
  45. this.plLeftMenu.Dock = System.Windows.Forms.DockStyle.Left;
  46. this.plLeftMenu.Location = new System.Drawing.Point(0, 37);
  47. this.plLeftMenu.Name = "plLeftMenu";
  48. this.plLeftMenu.Size = new System.Drawing.Size(196, 413);
  49. this.plLeftMenu.TabIndex = 0;
  50. //
  51. // plTitle
  52. //
  53. this.plTitle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
  54. this.plTitle.Controls.Add(this.btnMini);
  55. this.plTitle.Controls.Add(this.btnClose);
  56. this.plTitle.Controls.Add(this.label1);
  57. this.plTitle.Dock = System.Windows.Forms.DockStyle.Top;
  58. this.plTitle.Location = new System.Drawing.Point(0, 0);
  59. this.plTitle.Name = "plTitle";
  60. this.plTitle.Size = new System.Drawing.Size(800, 37);
  61. this.plTitle.TabIndex = 1;
  62. this.plTitle.MouseDown += new System.Windows.Forms.MouseEventHandler(this.plTitle_MouseDown);
  63. this.plTitle.MouseMove += new System.Windows.Forms.MouseEventHandler(this.plTitle_MouseMove);
  64. this.plTitle.MouseUp += new System.Windows.Forms.MouseEventHandler(this.plTitle_MouseUp);
  65. //
  66. // label1
  67. //
  68. this.label1.AutoSize = true;
  69. this.label1.Font = new System.Drawing.Font("Sitka Banner", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  70. this.label1.Location = new System.Drawing.Point(13, 3);
  71. this.label1.Name = "label1";
  72. this.label1.Size = new System.Drawing.Size(117, 30);
  73. this.label1.TabIndex = 0;
  74. this.label1.Text = "Wifi QRCode";
  75. //
  76. // plContent
  77. //
  78. this.plContent.Dock = System.Windows.Forms.DockStyle.Fill;
  79. this.plContent.Location = new System.Drawing.Point(196, 37);
  80. this.plContent.Name = "plContent";
  81. this.plContent.Size = new System.Drawing.Size(604, 413);
  82. this.plContent.TabIndex = 0;
  83. //
  84. // btnAboutMe
  85. //
  86. this.btnAboutMe.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  87. this.btnAboutMe.FlatAppearance.BorderSize = 0;
  88. this.btnAboutMe.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  89. this.btnAboutMe.Image = global::ShareWifi.Properties.Resources.icons8_about;
  90. this.btnAboutMe.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  91. this.btnAboutMe.Location = new System.Drawing.Point(0, 95);
  92. this.btnAboutMe.Name = "btnAboutMe";
  93. this.btnAboutMe.Size = new System.Drawing.Size(196, 46);
  94. this.btnAboutMe.TabIndex = 1;
  95. this.btnAboutMe.Text = "AboutMe";
  96. this.btnAboutMe.UseVisualStyleBackColor = false;
  97. this.btnAboutMe.Click += new System.EventHandler(this.btnAboutMe_Click);
  98. //
  99. // btnHome
  100. //
  101. this.btnHome.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(128)))), ((int)(((byte)(255)))));
  102. this.btnHome.FlatAppearance.BorderSize = 0;
  103. this.btnHome.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  104. this.btnHome.Image = global::ShareWifi.Properties.Resources.icons8_home_1;
  105. this.btnHome.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  106. this.btnHome.Location = new System.Drawing.Point(0, 46);
  107. this.btnHome.Name = "btnHome";
  108. this.btnHome.Size = new System.Drawing.Size(196, 46);
  109. this.btnHome.TabIndex = 1;
  110. this.btnHome.Text = "Home";
  111. this.btnHome.UseVisualStyleBackColor = false;
  112. this.btnHome.Click += new System.EventHandler(this.btnHome_Click);
  113. //
  114. // btnMini
  115. //
  116. this.btnMini.FlatAppearance.BorderSize = 0;
  117. this.btnMini.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  118. this.btnMini.ForeColor = System.Drawing.Color.Transparent;
  119. this.btnMini.Image = global::ShareWifi.Properties.Resources.Minus_icon;
  120. this.btnMini.Location = new System.Drawing.Point(724, 0);
  121. this.btnMini.Name = "btnMini";
  122. this.btnMini.Size = new System.Drawing.Size(37, 37);
  123. this.btnMini.TabIndex = 0;
  124. this.btnMini.UseVisualStyleBackColor = true;
  125. this.btnMini.Click += new System.EventHandler(this.btnMini_Click);
  126. //
  127. // btnClose
  128. //
  129. this.btnClose.FlatAppearance.BorderSize = 0;
  130. this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  131. this.btnClose.Image = global::ShareWifi.Properties.Resources.Delete_icon;
  132. this.btnClose.Location = new System.Drawing.Point(759, 2);
  133. this.btnClose.Name = "btnClose";
  134. this.btnClose.Size = new System.Drawing.Size(30, 30);
  135. this.btnClose.TabIndex = 0;
  136. this.btnClose.UseVisualStyleBackColor = true;
  137. this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
  138. //
  139. // MainForm
  140. //
  141. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  142. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(31)))), ((int)(((byte)(31)))), ((int)(((byte)(31)))));
  143. this.ClientSize = new System.Drawing.Size(800, 450);
  144. this.Controls.Add(this.plContent);
  145. this.Controls.Add(this.plLeftMenu);
  146. this.Controls.Add(this.plTitle);
  147. this.ForeColor = System.Drawing.Color.White;
  148. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  149. this.Name = "MainForm";
  150. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  151. this.Text = "Form1";
  152. this.Load += new System.EventHandler(this.MainForm_Load);
  153. this.plLeftMenu.ResumeLayout(false);
  154. this.plTitle.ResumeLayout(false);
  155. this.plTitle.PerformLayout();
  156. this.ResumeLayout(false);
  157. }
  158. #endregion
  159. private System.Windows.Forms.Panel plLeftMenu;
  160. private System.Windows.Forms.Panel plTitle;
  161. private System.Windows.Forms.Label label1;
  162. private System.Windows.Forms.Panel plContent;
  163. private System.Windows.Forms.Button btnClose;
  164. private System.Windows.Forms.Button btnMini;
  165. private System.Windows.Forms.Button btnHome;
  166. private System.Windows.Forms.Button btnAboutMe;
  167. }
  168. }