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

📄 form1.designer.cs

📁 csharp课本的源代码
💻 CS
字号:
namespace DrawLineExample
{
    partial class Form1
    {
        /// <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.drawLine1Label = new System.Windows.Forms.Label();
            this.drawLine2Label = new System.Windows.Forms.Label();
            this.drawLineslabel = new System.Windows.Forms.Label();
            this.SuspendLayout();
            // 
            // drawLine1Label
            // 
            this.drawLine1Label.AutoSize = true;
            this.drawLine1Label.Location = new System.Drawing.Point(12, 47);
            this.drawLine1Label.Name = "drawLine1Label";
            this.drawLine1Label.Size = new System.Drawing.Size(155, 12);
            this.drawLine1Label.TabIndex = 0;
            this.drawLine1Label.Text = "指定两个Point结构绘制的线";
            // 
            // drawLine2Label
            // 
            this.drawLine2Label.AutoSize = true;
            this.drawLine2Label.Location = new System.Drawing.Point(14, 114);
            this.drawLine2Label.Name = "drawLine2Label";
            this.drawLine2Label.Size = new System.Drawing.Size(173, 12);
            this.drawLine2Label.TabIndex = 1;
            this.drawLine2Label.Text = "由坐标对指定的两个点绘制的线";
            // 
            // drawLineslabel
            // 
            this.drawLineslabel.AutoSize = true;
            this.drawLineslabel.Location = new System.Drawing.Point(16, 177);
            this.drawLineslabel.Name = "drawLineslabel";
            this.drawLineslabel.Size = new System.Drawing.Size(125, 12);
            this.drawLineslabel.TabIndex = 2;
            this.drawLineslabel.Text = "绘制一系列点组成的线";
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(432, 255);
            this.Controls.Add(this.drawLineslabel);
            this.Controls.Add(this.drawLine2Label);
            this.Controls.Add(this.drawLine1Label);
            this.Name = "Form1";
            this.Text = "绘制直线示例";
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label drawLine1Label;
        private System.Windows.Forms.Label drawLine2Label;
        private System.Windows.Forms.Label drawLineslabel;
    }
}

⌨️ 快捷键说明

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