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

📄 form1.designer.cs

📁 微软(Microsoft)出版社C井练习文件及解答
💻 CS
字号:
namespace Methods
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        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.quit = new System.Windows.Forms.Button();
			this.result = new System.Windows.Forms.TextBox();
			this.expression = new System.Windows.Forms.TextBox();
			this.calculate = new System.Windows.Forms.Button();
			this.rightHandSideOperand = new System.Windows.Forms.TextBox();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.remainder = new System.Windows.Forms.RadioButton();
			this.division = new System.Windows.Forms.RadioButton();
			this.multiplication = new System.Windows.Forms.RadioButton();
			this.subtraction = new System.Windows.Forms.RadioButton();
			this.addition = new System.Windows.Forms.RadioButton();
			this.leftHandSideOperand = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.groupBox1.SuspendLayout();
			this.SuspendLayout();
			// 
			// quit
			// 
			this.quit.Location = new System.Drawing.Point(318, 235);
			this.quit.Name = "quit";
			this.quit.Size = new System.Drawing.Size(56, 23);
			this.quit.TabIndex = 17;
			this.quit.Text = "Quit";
			this.quit.Click += new System.EventHandler(this.quit_Click);
			// 
			// result
			// 
			this.result.Enabled = false;
			this.result.Location = new System.Drawing.Point(14, 235);
			this.result.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3);
			this.result.Name = "result";
			this.result.Size = new System.Drawing.Size(296, 20);
			this.result.TabIndex = 16;
			// 
			// expression
			// 
			this.expression.Enabled = false;
			this.expression.Location = new System.Drawing.Point(134, 187);
			this.expression.Name = "expression";
			this.expression.Size = new System.Drawing.Size(176, 20);
			this.expression.TabIndex = 15;
			// 
			// calculate
			// 
			this.calculate.Location = new System.Drawing.Point(14, 187);
			this.calculate.Name = "calculate";
			this.calculate.Size = new System.Drawing.Size(75, 23);
			this.calculate.TabIndex = 14;
			this.calculate.Text = "Calculate";
			this.calculate.Click += new System.EventHandler(this.calculate_Click);
			// 
			// rightHandSideOperand
			// 
			this.rightHandSideOperand.Location = new System.Drawing.Point(278, 35);
			this.rightHandSideOperand.Name = "rightHandSideOperand";
			this.rightHandSideOperand.Size = new System.Drawing.Size(100, 20);
			this.rightHandSideOperand.TabIndex = 13;
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.remainder);
			this.groupBox1.Controls.Add(this.division);
			this.groupBox1.Controls.Add(this.multiplication);
			this.groupBox1.Controls.Add(this.subtraction);
			this.groupBox1.Controls.Add(this.addition);
			this.groupBox1.Location = new System.Drawing.Point(134, 19);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(128, 128);
			this.groupBox1.TabIndex = 12;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "Operators";
			// 
			// remainder
			// 
			this.remainder.Location = new System.Drawing.Point(16, 104);
			this.remainder.Name = "remainder";
			this.remainder.Size = new System.Drawing.Size(104, 16);
			this.remainder.TabIndex = 4;
			this.remainder.Text = "% Remainder";
			// 
			// division
			// 
			this.division.Location = new System.Drawing.Point(16, 84);
			this.division.Name = "division";
			this.division.Size = new System.Drawing.Size(104, 16);
			this.division.TabIndex = 3;
			this.division.Text = "/ Division";
			// 
			// multiplication
			// 
			this.multiplication.Location = new System.Drawing.Point(16, 64);
			this.multiplication.Name = "multiplication";
			this.multiplication.Size = new System.Drawing.Size(104, 16);
			this.multiplication.TabIndex = 2;
			this.multiplication.Text = "* Multiplication";
			// 
			// subtraction
			// 
			this.subtraction.Location = new System.Drawing.Point(16, 44);
			this.subtraction.Name = "subtraction";
			this.subtraction.Size = new System.Drawing.Size(104, 16);
			this.subtraction.TabIndex = 1;
			this.subtraction.Text = "- Subtraction";
			// 
			// addition
			// 
			this.addition.Location = new System.Drawing.Point(16, 24);
			this.addition.Name = "addition";
			this.addition.Size = new System.Drawing.Size(104, 16);
			this.addition.TabIndex = 0;
			this.addition.Text = "+ Addition";
			// 
			// leftHandSideOperand
			// 
			this.leftHandSideOperand.Location = new System.Drawing.Point(14, 35);
			this.leftHandSideOperand.Name = "leftHandSideOperand";
			this.leftHandSideOperand.Size = new System.Drawing.Size(100, 20);
			this.leftHandSideOperand.TabIndex = 11;
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(14, 19);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(100, 23);
			this.label1.TabIndex = 18;
			this.label1.Text = "left operand";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(280, 19);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(100, 23);
			this.label2.TabIndex = 19;
			this.label2.Text = "right operand";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(134, 173);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(100, 23);
			this.label3.TabIndex = 20;
			this.label3.Text = "Expression";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(14, 217);
			this.label4.Margin = new System.Windows.Forms.Padding(3, 3, 3, 1);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(56, 16);
			this.label4.TabIndex = 21;
			this.label4.Text = "Result";
			// 
			// Form1
			// 
			this.ClientSize = new System.Drawing.Size(392, 277);
			this.Controls.Add(this.label4);
			this.Controls.Add(this.quit);
			this.Controls.Add(this.result);
			this.Controls.Add(this.expression);
			this.Controls.Add(this.calculate);
			this.Controls.Add(this.rightHandSideOperand);
			this.Controls.Add(this.groupBox1);
			this.Controls.Add(this.leftHandSideOperand);
			this.Controls.Add(this.label2);
			this.Controls.Add(this.label1);
			this.Controls.Add(this.label3);
			this.Name = "Form1";
			this.Text = "Form1";
			this.groupBox1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button quit;
        private System.Windows.Forms.TextBox result;
        private System.Windows.Forms.TextBox expression;
        private System.Windows.Forms.Button calculate;
        private System.Windows.Forms.TextBox rightHandSideOperand;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.RadioButton remainder;
        private System.Windows.Forms.RadioButton division;
        private System.Windows.Forms.RadioButton multiplication;
        private System.Windows.Forms.RadioButton subtraction;
        private System.Windows.Forms.RadioButton addition;
        private System.Windows.Forms.TextBox leftHandSideOperand;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label4;
    }
}

⌨️ 快捷键说明

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