也算初学C#,用VS2012写了书上一个windows窗体应用程序,可是窗体计算器运行时无法显示。

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Da... 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 WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
double corpus_amount, interest_rate, interest_amount, income_amount;
int deposit_years;
string str;
try
{
corpus_amount = double.Parse(corpus_textBox.Text);
deposit_years = Int32.Parse(years_textBox.Text);
interest_rate = double.Parse(interest_textBox.Text) / 100;
}
catch
{
MessageBox.Show("输入非数字!");
return;
}

income_amount = corpus_amount * Math.Pow((1 + interest_rate), deposit_years);
interest_amount = income_amount - corpus_amount;
str = string.Format("{0,3:d} {1,10:c} {2,8:c} {3,15:c}", deposit_years, corpus_amount, interest_amount, income_amount);

result_listBox.Items.Add(str);
}

private void button2_Click(object sender, EventArgs e)
{
Application.Exit();
}

}
}
展开
 我来答
syht2000
高粉答主

2014-10-29 · 关注我不会让你失望
知道大有可为答主
回答量:3万
采纳率:79%
帮助的人:1.4亿
展开全部
无法显示是什么意思,如果点了button1没反应,检查一下你的button1是否有click事件
追问

click事件在哪里?我里面只有button1的(name)还是button1, Text改成了计算,其它没有改过

追答


建议从最基础的书开始看,比如《C#入门经典》

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式