⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 form1.designer.cs

📁 数据结构排序算法演示数据结构排序算法演示数据结构排序算法演示数据结构排序算法演示数据结构排序算法演示数据结构排序算法演示数据结构排序算法演示
💻 CS
字号:
namespace GraphicsSort
{
    partial class frmMain
    {
        /// <summary>
        /// 必需的设计器变量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的资源。
        /// </summary>
        /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗体设计器生成的代码

        /// <summary>
        /// 设计器支持所需的方法 - 不要
        /// 使用代码编辑器修改此方法的内容。
        /// </summary>
        private void InitializeComponent()
        {
            this.pnlSimpleSort = new System.Windows.Forms.Panel();
            this.pnlBubbleSort = new System.Windows.Forms.Panel();
            this.pnlFastSort = new System.Windows.Forms.Panel();
            this.label1 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.btnNew = new System.Windows.Forms.Button();
            this.btnStart = new System.Windows.Forms.Button();
            this.lblResult = new System.Windows.Forms.Label();
            this.btnResult = new System.Windows.Forms.Button();
            this.pnlSelectSort = new System.Windows.Forms.Panel();
            this.label4 = new System.Windows.Forms.Label();
            this.pnlInsertSort = new System.Windows.Forms.Panel();
            this.label5 = new System.Windows.Forms.Label();
            this.pnlBubble2Sort = new System.Windows.Forms.Panel();
            this.label6 = new System.Windows.Forms.Label();
            this.pnlMergeSort = new System.Windows.Forms.Panel();
            this.label7 = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // pnlSimpleSort
            // 
            this.pnlSimpleSort.BackColor = System.Drawing.Color.White;
            this.pnlSimpleSort.Location = new System.Drawing.Point(12, 12);
            this.pnlSimpleSort.Name = "pnlSimpleSort";
            this.pnlSimpleSort.Size = new System.Drawing.Size(200, 300);
            this.pnlSimpleSort.TabIndex = 1;
            // 
            // pnlBubbleSort
            // 
            this.pnlBubbleSort.BackColor = System.Drawing.Color.White;
            this.pnlBubbleSort.Location = new System.Drawing.Point(265, 12);
            this.pnlBubbleSort.Name = "pnlBubbleSort";
            this.pnlBubbleSort.Size = new System.Drawing.Size(200, 300);
            this.pnlBubbleSort.TabIndex = 2;
            // 
            // pnlFastSort
            // 
            this.pnlFastSort.BackColor = System.Drawing.Color.White;
            this.pnlFastSort.Location = new System.Drawing.Point(12, 342);
            this.pnlFastSort.Name = "pnlFastSort";
            this.pnlFastSort.Size = new System.Drawing.Size(200, 300);
            this.pnlFastSort.TabIndex = 3;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(10, 315);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(53, 12);
            this.label1.TabIndex = 4;
            this.label1.Text = "简单排序";
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(263, 315);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(53, 12);
            this.label2.TabIndex = 5;
            this.label2.Text = "冒泡排序";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(10, 645);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(53, 12);
            this.label3.TabIndex = 6;
            this.label3.Text = "快速排序";
            // 
            // btnNew
            // 
            this.btnNew.Location = new System.Drawing.Point(817, 708);
            this.btnNew.Name = "btnNew";
            this.btnNew.Size = new System.Drawing.Size(75, 23);
            this.btnNew.TabIndex = 7;
            this.btnNew.Text = "重置";
            this.btnNew.UseVisualStyleBackColor = true;
            this.btnNew.Click += new System.EventHandler(this.btnNew_Click);
            // 
            // btnStart
            // 
            this.btnStart.BackColor = System.Drawing.Color.Red;
            this.btnStart.Location = new System.Drawing.Point(918, 708);
            this.btnStart.Name = "btnStart";
            this.btnStart.Size = new System.Drawing.Size(75, 23);
            this.btnStart.TabIndex = 7;
            this.btnStart.Text = "开始排序";
            this.btnStart.UseVisualStyleBackColor = false;
            this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
            // 
            // lblResult
            // 
            this.lblResult.AutoSize = true;
            this.lblResult.Location = new System.Drawing.Point(87, 688);
            this.lblResult.Name = "lblResult";
            this.lblResult.Size = new System.Drawing.Size(0, 12);
            this.lblResult.TabIndex = 8;
            // 
            // btnResult
            // 
            this.btnResult.Location = new System.Drawing.Point(703, 708);
            this.btnResult.Name = "btnResult";
            this.btnResult.Size = new System.Drawing.Size(75, 23);
            this.btnResult.TabIndex = 9;
            this.btnResult.Text = "排序结果";
            this.btnResult.UseVisualStyleBackColor = true;
            this.btnResult.Click += new System.EventHandler(this.button1_Click);
            // 
            // pnlSelectSort
            // 
            this.pnlSelectSort.BackColor = System.Drawing.Color.White;
            this.pnlSelectSort.Location = new System.Drawing.Point(793, 12);
            this.pnlSelectSort.Name = "pnlSelectSort";
            this.pnlSelectSort.Size = new System.Drawing.Size(200, 300);
            this.pnlSelectSort.TabIndex = 3;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(791, 315);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(53, 12);
            this.label4.TabIndex = 6;
            this.label4.Text = "选择排序";
            // 
            // pnlInsertSort
            // 
            this.pnlInsertSort.BackColor = System.Drawing.Color.White;
            this.pnlInsertSort.Location = new System.Drawing.Point(536, 12);
            this.pnlInsertSort.Name = "pnlInsertSort";
            this.pnlInsertSort.Size = new System.Drawing.Size(200, 300);
            this.pnlInsertSort.TabIndex = 3;
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(534, 315);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(53, 12);
            this.label5.TabIndex = 6;
            this.label5.Text = "插入排序";
            // 
            // pnlBubble2Sort
            // 
            this.pnlBubble2Sort.BackColor = System.Drawing.Color.White;
            this.pnlBubble2Sort.Location = new System.Drawing.Point(265, 342);
            this.pnlBubble2Sort.Name = "pnlBubble2Sort";
            this.pnlBubble2Sort.Size = new System.Drawing.Size(200, 300);
            this.pnlBubble2Sort.TabIndex = 3;
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(263, 645);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(77, 12);
            this.label6.TabIndex = 6;
            this.label6.Text = "双向冒泡排序";
            // 
            // pnlMergeSort
            // 
            this.pnlMergeSort.BackColor = System.Drawing.Color.White;
            this.pnlMergeSort.Location = new System.Drawing.Point(536, 342);
            this.pnlMergeSort.Name = "pnlMergeSort";
            this.pnlMergeSort.Size = new System.Drawing.Size(200, 300);
            this.pnlMergeSort.TabIndex = 3;
            // 
            // label7
            // 
            this.label7.AutoSize = true;
            this.label7.Location = new System.Drawing.Point(534, 645);
            this.label7.Name = "label7";
            this.label7.Size = new System.Drawing.Size(53, 12);
            this.label7.TabIndex = 6;
            this.label7.Text = "合并排序";
            // 
            // frmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(1016, 734);
            this.Controls.Add(this.btnResult);
            this.Controls.Add(this.lblResult);
            this.Controls.Add(this.btnStart);
            this.Controls.Add(this.btnNew);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pnlInsertSort);
            this.Controls.Add(this.pnlSelectSort);
            this.Controls.Add(this.pnlMergeSort);
            this.Controls.Add(this.pnlBubble2Sort);
            this.Controls.Add(this.pnlFastSort);
            this.Controls.Add(this.pnlBubbleSort);
            this.Controls.Add(this.pnlSimpleSort);
            this.DoubleBuffered = true;
            this.Name = "frmMain";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "演示窗体";
            this.Shown += new System.EventHandler(this.frmMain_Shown);
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Panel pnlSimpleSort;
        private System.Windows.Forms.Panel pnlBubbleSort;
        private System.Windows.Forms.Panel pnlFastSort;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Button btnNew;
        private System.Windows.Forms.Button btnStart;
        private System.Windows.Forms.Label lblResult;
        private System.Windows.Forms.Button btnResult;
        private System.Windows.Forms.Panel pnlSelectSort;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Panel pnlInsertSort;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Panel pnlBubble2Sort;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Panel pnlMergeSort;
        private System.Windows.Forms.Label label7;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -