| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- namespace CustomWindow.Forms
- {
- partial class SimpleTitleForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.pictureBox1 = new System.Windows.Forms.PictureBox();
- this.label1 = new System.Windows.Forms.Label();
- this.panel1 = new System.Windows.Forms.Panel();
- this.panel2 = new System.Windows.Forms.Panel();
- this.panel3 = new System.Windows.Forms.Panel();
- this.panel4 = new System.Windows.Forms.Panel();
- this.BTClose = new System.Windows.Forms.Button();
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
- this.panel1.SuspendLayout();
- this.panel2.SuspendLayout();
- this.panel3.SuspendLayout();
- this.panel4.SuspendLayout();
- this.SuspendLayout();
- //
- // pictureBox1
- //
- this.pictureBox1.BackColor = System.Drawing.Color.DarkGray;
- this.pictureBox1.Location = new System.Drawing.Point(10, 10);
- this.pictureBox1.Name = "pictureBox1";
- this.pictureBox1.Size = new System.Drawing.Size(36, 36);
- this.pictureBox1.TabIndex = 0;
- this.pictureBox1.TabStop = false;
- //
- // label1
- //
- this.label1.Dock = System.Windows.Forms.DockStyle.Fill;
- this.label1.Font = new System.Drawing.Font("微软雅黑", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1.Location = new System.Drawing.Point(0, 0);
- this.label1.Name = "label1";
- this.label1.Padding = new System.Windows.Forms.Padding(10, 0, 0, 0);
- this.label1.Size = new System.Drawing.Size(1783, 56);
- this.label1.TabIndex = 1;
- this.label1.Text = "label1";
- this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
- this.label1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.label1_MouseMove);
- //
- // panel1
- //
- this.panel1.BackColor = System.Drawing.Color.Silver;
- this.panel1.Controls.Add(this.panel4);
- this.panel1.Controls.Add(this.panel3);
- this.panel1.Controls.Add(this.panel2);
- this.panel1.Dock = System.Windows.Forms.DockStyle.Top;
- this.panel1.Location = new System.Drawing.Point(0, 0);
- this.panel1.Name = "panel1";
- this.panel1.Size = new System.Drawing.Size(1920, 56);
- this.panel1.TabIndex = 2;
- //
- // panel2
- //
- this.panel2.Controls.Add(this.pictureBox1);
- this.panel2.Dock = System.Windows.Forms.DockStyle.Left;
- this.panel2.Location = new System.Drawing.Point(0, 0);
- this.panel2.Name = "panel2";
- this.panel2.Size = new System.Drawing.Size(56, 56);
- this.panel2.TabIndex = 0;
- //
- // panel3
- //
- this.panel3.Controls.Add(this.BTClose);
- this.panel3.Dock = System.Windows.Forms.DockStyle.Right;
- this.panel3.Location = new System.Drawing.Point(1839, 0);
- this.panel3.Name = "panel3";
- this.panel3.Size = new System.Drawing.Size(81, 56);
- this.panel3.TabIndex = 2;
- //
- // panel4
- //
- this.panel4.Controls.Add(this.label1);
- this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
- this.panel4.Location = new System.Drawing.Point(56, 0);
- this.panel4.Name = "panel4";
- this.panel4.Size = new System.Drawing.Size(1783, 56);
- this.panel4.TabIndex = 3;
- //
- // BTClose
- //
- this.BTClose.Location = new System.Drawing.Point(3, 12);
- this.BTClose.Name = "BTClose";
- this.BTClose.Size = new System.Drawing.Size(75, 23);
- this.BTClose.TabIndex = 0;
- this.BTClose.Text = "关闭";
- this.BTClose.UseVisualStyleBackColor = true;
- this.BTClose.Click += new System.EventHandler(this.BTClose_Click);
- //
- // SimpleTitleForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(1920, 1080);
- this.Controls.Add(this.panel1);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- this.Name = "SimpleTitleForm";
- this.Text = "Title";
- this.Load += new System.EventHandler(this.NoTitleForm_Load);
- ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
- this.panel1.ResumeLayout(false);
- this.panel2.ResumeLayout(false);
- this.panel3.ResumeLayout(false);
- this.panel4.ResumeLayout(false);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.PictureBox pictureBox1;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Panel panel1;
- private System.Windows.Forms.Panel panel4;
- private System.Windows.Forms.Panel panel3;
- private System.Windows.Forms.Panel panel2;
- private System.Windows.Forms.Button BTClose;
- }
- }
|