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

📄 form1.designer.cs

📁 Visual C#2005程序设计教程
💻 CS
字号:
namespace WinApp5_5BreakContinue
{
    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.radAll = new System.Windows.Forms.RadioButton();
            this.radBreak = new System.Windows.Forms.RadioButton();
            this.radContinue = new System.Windows.Forms.RadioButton();
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // lblOut
            // 
            this.lblOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
            this.lblOut.Location = new System.Drawing.Point(22, 23);
            this.lblOut.Name = "lblOut";
            this.lblOut.Size = new System.Drawing.Size(348, 85);
            this.lblOut.TabIndex = 0;
            // 
            // radAll
            // 
            this.radAll.AutoSize = true;
            this.radAll.Checked = true;
            this.radAll.Location = new System.Drawing.Point(45, 128);
            this.radAll.Name = "radAll";
            this.radAll.Size = new System.Drawing.Size(58, 19);
            this.radAll.TabIndex = 1;
            this.radAll.TabStop = true;
            this.radAll.Text = "全部";
            this.radAll.UseVisualStyleBackColor = true;
            // 
            // radBreak
            // 
            this.radBreak.AutoSize = true;
            this.radBreak.Location = new System.Drawing.Point(146, 128);
            this.radBreak.Name = "radBreak";
            this.radBreak.Size = new System.Drawing.Size(104, 19);
            this.radBreak.TabIndex = 2;
            this.radBreak.Text = "小于等于15";
            this.radBreak.UseVisualStyleBackColor = true;
            // 
            // radContinue
            // 
            this.radContinue.AutoSize = true;
            this.radContinue.Location = new System.Drawing.Point(293, 128);
            this.radContinue.Name = "radContinue";
            this.radContinue.Size = new System.Drawing.Size(58, 19);
            this.radContinue.TabIndex = 3;
            this.radContinue.Text = "奇数";
            this.radContinue.UseVisualStyleBackColor = true;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(161, 165);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 31);
            this.button1.TabIndex = 4;
            this.button1.Text = "输出";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(397, 217);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.radContinue);
            this.Controls.Add(this.radBreak);
            this.Controls.Add(this.radAll);
            this.Controls.Add(this.lblOut);
            this.Name = "Form1";
            this.Text = "1~30的数";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label lblOut;
        private System.Windows.Forms.RadioButton radAll;
        private System.Windows.Forms.RadioButton radBreak;
        private System.Windows.Forms.RadioButton radContinue;
        private System.Windows.Forms.Button button1;
    }
}

⌨️ 快捷键说明

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