您的位置:首页 > 编程语言 > C#

C#编程基础 实验(8) (4)

2016-04-29 17:15 465 查看
设计窗体。要求:窗体标题为“我的文本框实验”;窗体上一个标签;窗体中有一个文本框,文本框中只能输入0~9十种数字,最多输入8个字符。单击“结束”按钮程序即可结束。

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;

using System.Windows.Forms;

namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();

}

private void Form1_Load(object sender, EventArgs e)
{
this.Text = "我的文本框实验";
button1.Text = "结束";
}

private void label1_Click(object sender, EventArgs e)
{
label1.Text = "下面文本框只能输入0至9十种数字,且长度最多8个";
}

private void button1_Click(object sender, EventArgs e)
{
this.Close();
}

private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar < '0' || e.KeyChar > '9')
{
e.Handled = true;
}
textBox1.MaxLength = 8;
}

private void textBox1_TextChanged(object sender, EventArgs e)
{

}
}
}


 
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  c# 博客