试图运行教科书C#WFA程序。表格不显示结果

时间:2016-09-15 06:37:38

标签: c#

我对使用这个网站很新,而且我也非常喜欢编程(编程学校的新生)

接下来的事情,我正在为类做一个赋值,这本质上是为windows表单应用程序编写这个代码来计算一些简单的东西。很容易,但我已经准确地输入了代码,每次我使用“是”'或者没有'我的表单上的按钮,没有生成。生病了我的代码以及我的程序正在运行,我希望有人可以帮助我。答案可能很明显,我还是个新手。提前谢谢!

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace LoopingBankBalGUI

{

    partial class Form1 : Form
    {
        double bankBal = 1000;
        const double INT_RATE = 0.04;
        private void yesButton_Click(object sender, EventArgs e)
        {
            outputLabel.Text += String.Format("Bank balance is {0}\n",
                bankBal.ToString("C"));
            bankBal = bankBal + bankBal * INT_RATE;
        }
        private void noButton_Click(object sender, EventArgs e)
        {
            outputLabel.Text = "Have a nice day!";
        }

        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }
    }
}

这是我的表格本身的图片:

1 个答案:

答案 0 :(得分:0)

我认为您需要验证是否将EventHandler方法添加到designer.cs文件中的按钮单击事件。

private void InitializeComponent()
        {
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(112, 117);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 0;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(284, 262);
            this.Controls.Add(this.button1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.ResumeLayout(false);

        }

在上面的代码中,请注意代码:

  

this.button1.Click + = new System.EventHandler(this.button1_Click);

按这样添加按钮点击事件。

<强>更新

您遇到的问题是因为enter image description here

在您的代码中,当用户首次单击该按钮时,yesButton_Click方法将添加到click事件中。所以第一次没有调用yesButton_Click方法。

所以你第一次没有得到输出。

在InitializeComponent()方法中,您必须将yesButton_Click方法附加到按钮单击事件。这样在加载表单时附加了该方法。那么现在如果你第一次点击,你将得到结果。

您的代码应如下所示

 public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        double bankBal = 1000;
        const double INT_RATE = 0.04;
        private void yesButton_Click(object sender, EventArgs e)
        {
            outputLabel.Text += String.Format("Bank balance is {0}\n",
                bankBal.ToString("C"));
            bankBal = bankBal + bankBal * INT_RATE;
        }
        private void noButton_Click(object sender, EventArgs e)
        {
            outputLabel.Text = "Have a nice day!";
        }        
    }

要将yesButton_Click和noButton_Click方法附加到相应的按钮,您需要转到属性窗口并选择相应的方法:

enter image description here

通过这样做,方法是在加载表单时附加到按钮单击事件。