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

📄 form1.designer.cs

📁 Visual C#2005程序设计教程
💻 CS
字号:
namespace WinApp5_3循环嵌套
{
    partial class Form1
    {
        /// <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.lblOut = new System.Windows.Forms.Label();
            this.radTriangle = new System.Windows.Forms.RadioButton();
            this.radTrapezia = new System.Windows.Forms.RadioButton();
            this.SuspendLayout();
            // 
            // lblOut
            // 
            this.lblOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblOut.Location = new System.Drawing.Point(38, 26);
            this.lblOut.Name = "lblOut";
            this.lblOut.Size = new System.Drawing.Size(273, 168);
            this.lblOut.TabIndex = 0;
            // 
            // radTriangle
            // 
            this.radTriangle.AutoSize = true;
            this.radTriangle.Location = new System.Drawing.Point(74, 209);
            this.radTriangle.Name = "radTriangle";
            this.radTriangle.Size = new System.Drawing.Size(73, 19);
            this.radTriangle.TabIndex = 1;
            this.radTriangle.Text = "三角形";
            this.radTriangle.UseVisualStyleBackColor = true;
            this.radTriangle.CheckedChanged += new System.EventHandler(this.radTriangle_CheckedChanged);
            // 
            // radTrapezia
            // 
            this.radTrapezia.AutoSize = true;
            this.radTrapezia.Location = new System.Drawing.Point(220, 209);
            this.radTrapezia.Name = "radTrapezia";
            this.radTrapezia.Size = new System.Drawing.Size(58, 19);
            this.radTrapezia.TabIndex = 2;
            this.radTrapezia.Text = "梯形";
            this.radTrapezia.UseVisualStyleBackColor = true;
            this.radTrapezia.CheckedChanged += new System.EventHandler(this.radTrapezia_CheckedChanged);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(352, 251);
            this.Controls.Add(this.radTrapezia);
            this.Controls.Add(this.radTriangle);
            this.Controls.Add(this.lblOut);
            this.Name = "Form1";
            this.Text = "梯形与三角形";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label lblOut;
        private System.Windows.Forms.RadioButton radTriangle;
        private System.Windows.Forms.RadioButton radTrapezia;
    }
}

⌨️ 快捷键说明

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