SimpleTitleForm.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. namespace CustomWindow.Forms
  2. {
  3. partial class SimpleTitleForm
  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.pictureBox1 = new System.Windows.Forms.PictureBox();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.panel2 = new System.Windows.Forms.Panel();
  32. this.panel3 = new System.Windows.Forms.Panel();
  33. this.panel4 = new System.Windows.Forms.Panel();
  34. this.BTClose = new System.Windows.Forms.Button();
  35. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
  36. this.panel1.SuspendLayout();
  37. this.panel2.SuspendLayout();
  38. this.panel3.SuspendLayout();
  39. this.panel4.SuspendLayout();
  40. this.SuspendLayout();
  41. //
  42. // pictureBox1
  43. //
  44. this.pictureBox1.BackColor = System.Drawing.Color.DarkGray;
  45. this.pictureBox1.Location = new System.Drawing.Point(10, 10);
  46. this.pictureBox1.Name = "pictureBox1";
  47. this.pictureBox1.Size = new System.Drawing.Size(36, 36);
  48. this.pictureBox1.TabIndex = 0;
  49. this.pictureBox1.TabStop = false;
  50. //
  51. // label1
  52. //
  53. this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
  54. this.label1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  55. this.label1.Location = new System.Drawing.Point(0, 0);
  56. this.label1.Name = "label1";
  57. this.label1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
  58. this.label1.Size = new System.Drawing.Size(1783, 56);
  59. this.label1.TabIndex = 1;
  60. this.label1.Text = "label1";
  61. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
  62. this.label1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label1_MouseMove);
  63. //
  64. // panel1
  65. //
  66. this.panel1.BackColor = System.Drawing.Color.Silver;
  67. this.panel1.Controls.Add(this.panel4);
  68. this.panel1.Controls.Add(this.panel3);
  69. this.panel1.Controls.Add(this.panel2);
  70. this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
  71. this.panel1.Location = new System.Drawing.Point(0, 0);
  72. this.panel1.Name = "panel1";
  73. this.panel1.Size = new System.Drawing.Size(1920, 56);
  74. this.panel1.TabIndex = 2;
  75. //
  76. // panel2
  77. //
  78. this.panel2.Controls.Add(this.pictureBox1);
  79. this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
  80. this.panel2.Location = new System.Drawing.Point(0, 0);
  81. this.panel2.Name = "panel2";
  82. this.panel2.Size = new System.Drawing.Size(56, 56);
  83. this.panel2.TabIndex = 0;
  84. //
  85. // panel3
  86. //
  87. this.panel3.Controls.Add(this.BTClose);
  88. this.panel3.Dock = System.Windows.Forms.DockStyle.Right;
  89. this.panel3.Location = new System.Drawing.Point(1839, 0);
  90. this.panel3.Name = "panel3";
  91. this.panel3.Size = new System.Drawing.Size(81, 56);
  92. this.panel3.TabIndex = 2;
  93. //
  94. // panel4
  95. //
  96. this.panel4.Controls.Add(this.label1);
  97. this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
  98. this.panel4.Location = new System.Drawing.Point(56, 0);
  99. this.panel4.Name = "panel4";
  100. this.panel4.Size = new System.Drawing.Size(1783, 56);
  101. this.panel4.TabIndex = 3;
  102. //
  103. // BTClose
  104. //
  105. this.BTClose.Location = new System.Drawing.Point(3, 12);
  106. this.BTClose.Name = "BTClose";
  107. this.BTClose.Size = new System.Drawing.Size(75, 23);
  108. this.BTClose.TabIndex = 0;
  109. this.BTClose.Text = "关闭";
  110. this.BTClose.UseVisualStyleBackColor = true;
  111. this.BTClose.Click += new System.EventHandler(this.BTClose_Click);
  112. //
  113. // SimpleTitleForm
  114. //
  115. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  116. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  117. this.ClientSize = new System.Drawing.Size(1920, 1080);
  118. this.Controls.Add(this.panel1);
  119. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  120. this.Name = "SimpleTitleForm";
  121. this.Text = "Title";
  122. this.Load += new System.EventHandler(this.NoTitleForm_Load);
  123. ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
  124. this.panel1.ResumeLayout(false);
  125. this.panel2.ResumeLayout(false);
  126. this.panel3.ResumeLayout(false);
  127. this.panel4.ResumeLayout(false);
  128. this.ResumeLayout(false);
  129. }
  130. #endregion
  131. private System.Windows.Forms.PictureBox pictureBox1;
  132. private System.Windows.Forms.Label label1;
  133. private System.Windows.Forms.Panel panel1;
  134. private System.Windows.Forms.Panel panel4;
  135. private System.Windows.Forms.Panel panel3;
  136. private System.Windows.Forms.Panel panel2;
  137. private System.Windows.Forms.Button BTClose;
  138. }
  139. }