用C#语言编写 输入一个字符串,当长度小于20时,提示继续输入,大于等于20时,删除字符串中的连续字符。
3个回答
2012-06-05
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.MaxLength = 20;
label1.Text = "";
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text.Length < 20)
label1.Text = "请输入20个字符!";
else
label1.Text = "";
}
}
}
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
textBox1.MaxLength = 20;
label1.Text = "";
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if (textBox1.Text.Length < 20)
label1.Text = "请输入20个字符!";
else
label1.Text = "";
}
}
}
追问
谢谢 但是错误好多啊
追答
什么错误,你要在窗体上放一个TextBox和一个Label
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个应该是JavaScript的应用,你的是Asp.net的Web开发把?
这个应该通过JavaScript来控制,用C#成本太高了。
这个应该通过JavaScript来控制,用C#成本太高了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询