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

📄 form1.designer.cs

📁 微软(Microsoft)出版社C井练习文件及解答
💻 CS
字号:
namespace MathsOperators
{
    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.result = new System.Windows.Forms.TextBox();
            this.expression = new System.Windows.Forms.TextBox();
            this.rightHandSideOperand = new System.Windows.Forms.TextBox();
            this.leftHandSideOperand = new System.Windows.Forms.TextBox();
            this.quit = new System.Windows.Forms.Button();
            this.calculate = new System.Windows.Forms.Button();
            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.label4 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.label2 = new System.Windows.Forms.Label();
            this.label1 = new System.Windows.Forms.Label();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
// 
// result
// 
            this.result.Enabled = false;
            this.result.Location = new System.Drawing.Point(14, 228);
            this.result.Name = "result";
            this.result.Size = new System.Drawing.Size(296, 20);
            this.result.TabIndex = 13;
// 
// expression
// 
            this.expression.Enabled = false;
            this.expression.Location = new System.Drawing.Point(134, 180);
            this.expression.Name = "expression";
            this.expression.Size = new System.Drawing.Size(176, 20);
            this.expression.TabIndex = 12;
// 
// rightHandSideOperand
// 
            this.rightHandSideOperand.Location = new System.Drawing.Point(278, 28);
            this.rightHandSideOperand.Name = "rightHandSideOperand";
            this.rightHandSideOperand.TabIndex = 11;
// 
// leftHandSideOperand
// 
            this.leftHandSideOperand.Location = new System.Drawing.Point(14, 28);
            this.leftHandSideOperand.Name = "leftHandSideOperand";
            this.leftHandSideOperand.TabIndex = 10;
// 
// quit
// 
            this.quit.Location = new System.Drawing.Point(320, 235);
            this.quit.Name = "quit";
            this.quit.Size = new System.Drawing.Size(56, 23);
            this.quit.TabIndex = 16;
            this.quit.Text = "Quit";
            this.quit.Click += new System.EventHandler(this.quit_Click);
// 
// calculate
// 
            this.calculate.Location = new System.Drawing.Point(16, 187);
            this.calculate.Margin = new System.Windows.Forms.Padding(3, 3, 3, 2);
            this.calculate.Name = "calculate";
            this.calculate.TabIndex = 15;
            this.calculate.Text = "Calculate";
            this.calculate.Click += new System.EventHandler(this.calculate_Click);
// 
// 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(136, 19);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(128, 128);
            this.groupBox1.TabIndex = 14;
            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";
// 
// label4
// 
            this.label4.Location = new System.Drawing.Point(14, 213);
            this.label4.Margin = new System.Windows.Forms.Padding(3, 1, 3, 3);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(56, 16);
            this.label4.TabIndex = 20;
            this.label4.Text = "Result";
// 
// label3
// 
            this.label3.Location = new System.Drawing.Point(134, 165);
            this.label3.Name = "label3";
            this.label3.TabIndex = 19;
            this.label3.Text = "Expression";
// 
// label2
// 
            this.label2.Location = new System.Drawing.Point(278, 13);
            this.label2.Name = "label2";
            this.label2.TabIndex = 18;
            this.label2.Text = "right operand";
// 
// label1
// 
            this.label1.Location = new System.Drawing.Point(14, 13);
            this.label1.Name = "label1";
            this.label1.TabIndex = 17;
            this.label1.Text = "left operand";
// 
// Form1
// 
            this.ClientSize = new System.Drawing.Size(392, 277);
            this.Controls.Add(this.quit);
            this.Controls.Add(this.calculate);
            this.Controls.Add(this.groupBox1);
            this.Controls.Add(this.result);
            this.Controls.Add(this.expression);
            this.Controls.Add(this.rightHandSideOperand);
            this.Controls.Add(this.leftHandSideOperand);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Name = "Form1";
            this.Text = "Exceptions";
            this.groupBox1.ResumeLayout(false);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox result;
        private System.Windows.Forms.TextBox expression;
        private System.Windows.Forms.TextBox rightHandSideOperand;
        private System.Windows.Forms.TextBox leftHandSideOperand;
        private System.Windows.Forms.Button quit;
        private System.Windows.Forms.Button calculate;
        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.Label label4;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label1;
    }
}

⌨️ 快捷键说明

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