|
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int a = int.Parse(textBox1.Text); //将类型转换为 int型
int b = Convert.ToInt32(textBox2.Text); //学习的天轰穿老师的
int c=a+b;
if (this.textBox1.Text.Trim() == "" || this.textBox2.Text.Trim() == "") // 刚看到第八讲,准备在这里写一个if文本框里的值是有一个是空
{
MessageBox.Show("数据不能为空"); // MessageBox.Show("数据不能为空");
}
// else if 文本框里的值是字母(不区分大小写)
//MessageBox.Show("数据不能为字母");
textBox3.Text = c.ToString(); //将Int类型转化成String型
}
private void button2_Click(object sender, EventArgs e)
{
string c = textBox1.Text + textBox2.Text;
textBox3.Text = c.ToString();
}
}
}
红色字体是我想写的东西,但苦于刚入门啥都不会啊,请各位大神不吝指点一下小弟啊。
|
|