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

📄 formmain.designer.cs

📁 提供的编译原理答案希望对大家有所帮助。答案如果有什么地方错误请大家原谅
💻 CS
字号:
namespace SuperCalculator
{
    partial class FormMain
    {
        /// <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.labelstartAmount = new System.Windows.Forms.Label();
            this.labelyearRate = new System.Windows.Forms.Label();
            this.labelyears = new System.Windows.Forms.Label();
            this.groupBox1 = new System.Windows.Forms.GroupBox();
            this.comboBoxcalculateFrequency = new System.Windows.Forms.ComboBox();
            this.textBoxyears = new System.Windows.Forms.TextBox();
            this.textBoxyearRate = new System.Windows.Forms.TextBox();
            this.textBoxstartAmount = new System.Windows.Forms.TextBox();
            this.labelcalculateFrequency = new System.Windows.Forms.Label();
            this.labelTotal = new System.Windows.Forms.Label();
            this.buttonCalculate = new System.Windows.Forms.Button();
            this.textBoxTotal = new System.Windows.Forms.TextBox();
            this.groupBox1.SuspendLayout();
            this.SuspendLayout();
            // 
            // labelstartAmount
            // 
            this.labelstartAmount.AutoSize = true;
            this.labelstartAmount.Location = new System.Drawing.Point(12, 34);
            this.labelstartAmount.Name = "labelstartAmount";
            this.labelstartAmount.Size = new System.Drawing.Size(89, 12);
            this.labelstartAmount.TabIndex = 0;
            this.labelstartAmount.Text = "存款金额(元)";
            // 
            // labelyearRate
            // 
            this.labelyearRate.AutoSize = true;
            this.labelyearRate.Location = new System.Drawing.Point(18, 64);
            this.labelyearRate.Name = "labelyearRate";
            this.labelyearRate.Size = new System.Drawing.Size(77, 12);
            this.labelyearRate.TabIndex = 1;
            this.labelyearRate.Text = "年利率(%)";
            // 
            // labelyears
            // 
            this.labelyears.AutoSize = true;
            this.labelyears.Location = new System.Drawing.Point(18, 96);
            this.labelyears.Name = "labelyears";
            this.labelyears.Size = new System.Drawing.Size(65, 12);
            this.labelyears.TabIndex = 2;
            this.labelyears.Text = "存期(年)\r\n";
            // 
            // groupBox1
            // 
            this.groupBox1.Controls.Add(this.comboBoxcalculateFrequency);
            this.groupBox1.Controls.Add(this.textBoxyears);
            this.groupBox1.Controls.Add(this.textBoxyearRate);
            this.groupBox1.Controls.Add(this.textBoxstartAmount);
            this.groupBox1.Controls.Add(this.labelcalculateFrequency);
            this.groupBox1.Controls.Add(this.labelyears);
            this.groupBox1.Controls.Add(this.labelyearRate);
            this.groupBox1.Controls.Add(this.labelstartAmount);
            this.groupBox1.Location = new System.Drawing.Point(32, 25);
            this.groupBox1.Name = "groupBox1";
            this.groupBox1.Size = new System.Drawing.Size(341, 199);
            this.groupBox1.TabIndex = 0;
            this.groupBox1.TabStop = false;
            this.groupBox1.Text = "输入信息";
            // 
            // comboBoxcalculateFrequency
            // 
            this.comboBoxcalculateFrequency.FormattingEnabled = true;
            this.comboBoxcalculateFrequency.Items.AddRange(new object[] {
            "按月计息",
            "按季度计息",
            "按年计息"});
            this.comboBoxcalculateFrequency.Location = new System.Drawing.Point(112, 136);
            this.comboBoxcalculateFrequency.Name = "comboBoxcalculateFrequency";
            this.comboBoxcalculateFrequency.Size = new System.Drawing.Size(121, 20);
            this.comboBoxcalculateFrequency.TabIndex = 7;
            this.comboBoxcalculateFrequency.SelectedIndexChanged += new System.EventHandler(this.comboBoxcalculateFrequency_SelectedIndexChanged);
            this.comboBoxcalculateFrequency.KeyDown += new System.Windows.Forms.KeyEventHandler(this.comboBoxcalculateFrequency_KeyDown);
            // 
            // textBoxyears
            // 
            this.textBoxyears.Location = new System.Drawing.Point(112, 93);
            this.textBoxyears.Name = "textBoxyears";
            this.textBoxyears.Size = new System.Drawing.Size(121, 21);
            this.textBoxyears.TabIndex = 6;
            this.textBoxyears.TextChanged += new System.EventHandler(this.textBox_TextChanged);
            this.textBoxyears.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
            // 
            // textBoxyearRate
            // 
            this.textBoxyearRate.Location = new System.Drawing.Point(112, 61);
            this.textBoxyearRate.Name = "textBoxyearRate";
            this.textBoxyearRate.Size = new System.Drawing.Size(121, 21);
            this.textBoxyearRate.TabIndex = 5;
            this.textBoxyearRate.TextChanged += new System.EventHandler(this.textBox_TextChanged);
            this.textBoxyearRate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
            // 
            // textBoxstartAmount
            // 
            this.textBoxstartAmount.Location = new System.Drawing.Point(112, 28);
            this.textBoxstartAmount.Name = "textBoxstartAmount";
            this.textBoxstartAmount.Size = new System.Drawing.Size(121, 21);
            this.textBoxstartAmount.TabIndex = 4;
            this.textBoxstartAmount.TextChanged += new System.EventHandler(this.textBox_TextChanged);
            this.textBoxstartAmount.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox_KeyDown);
            // 
            // labelcalculateFrequency
            // 
            this.labelcalculateFrequency.AutoSize = true;
            this.labelcalculateFrequency.Location = new System.Drawing.Point(18, 136);
            this.labelcalculateFrequency.Name = "labelcalculateFrequency";
            this.labelcalculateFrequency.Size = new System.Drawing.Size(77, 12);
            this.labelcalculateFrequency.TabIndex = 3;
            this.labelcalculateFrequency.Text = "利息计算方式";
            // 
            // labelTotal
            // 
            this.labelTotal.AutoSize = true;
            this.labelTotal.Location = new System.Drawing.Point(41, 241);
            this.labelTotal.Name = "labelTotal";
            this.labelTotal.Size = new System.Drawing.Size(77, 12);
            this.labelTotal.TabIndex = 3;
            this.labelTotal.Text = "到期结算余额";
            // 
            // buttonCalculate
            // 
            this.buttonCalculate.Location = new System.Drawing.Point(162, 275);
            this.buttonCalculate.Name = "buttonCalculate";
            this.buttonCalculate.Size = new System.Drawing.Size(75, 23);
            this.buttonCalculate.TabIndex = 4;
            this.buttonCalculate.Text = "计算";
            this.buttonCalculate.UseVisualStyleBackColor = true;
            this.buttonCalculate.Click += new System.EventHandler(this.buttonCalculate_Click);
            this.buttonCalculate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.buttonCalculate_KeyDown);
            // 
            // textBoxTotal
            // 
            this.textBoxTotal.Location = new System.Drawing.Point(141, 238);
            this.textBoxTotal.Name = "textBoxTotal";
            this.textBoxTotal.ReadOnly = true;
            this.textBoxTotal.Size = new System.Drawing.Size(121, 21);
            this.textBoxTotal.TabIndex = 7;
            // 
            // FormMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(412, 312);
            this.Controls.Add(this.textBoxTotal);
            this.Controls.Add(this.buttonCalculate);
            this.Controls.Add(this.labelTotal);
            this.Controls.Add(this.groupBox1);
            this.Name = "FormMain";
            this.Text = "超级存款计算器";
            this.Load += new System.EventHandler(this.FormMain_Load);
            this.Shown += new System.EventHandler(this.FormMain_Shown);
            this.groupBox1.ResumeLayout(false);
            this.groupBox1.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label labelstartAmount;
        private System.Windows.Forms.Label labelyearRate;
        private System.Windows.Forms.Label labelyears;
        private System.Windows.Forms.GroupBox groupBox1;
        private System.Windows.Forms.ComboBox comboBoxcalculateFrequency;
        private System.Windows.Forms.TextBox textBoxyears;
        private System.Windows.Forms.TextBox textBoxyearRate;
        private System.Windows.Forms.TextBox textBoxstartAmount;
        private System.Windows.Forms.Label labelcalculateFrequency;
        private System.Windows.Forms.Label labelTotal;
        private System.Windows.Forms.Button buttonCalculate;
        private System.Windows.Forms.TextBox textBoxTotal;

    }
}

⌨️ 快捷键说明

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