在windows窗体应用程序验证文本框 [英] validating textbox in windows form applications

查看:308
本文介绍了在windows窗体应用程序验证文本框的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的情况是:



不给自己留空间在开始的文本框的位置后,输入一个或多个字符的文本框允许使用空格



下面并不适用于我的方案。




  1.  私人无效textBox1_KeyPress(对象发件人,KeyPressEventArgs E)
    {
    如果(e.Handled =(e.KeyChar ==(char)的Keys.Space))
    {
    MessageBox.Show(空间不允许);
    }
    }


  2.   textBox1.Text.TrimStart()



解决方案

我相信lazyDBA的回答是对你的要求正确的,所以此消息框是这样的:

 如果(textBox1.Text.Length == 0)
{
如果(e.Handler =(e.KeyChar ==(char)的Keys.Space))
{
MessageBox.Show(不允许包含空格!);
}
}`


My scenario is:

Not allowing spaces at starting position of textbox after enter one or more characters text box allows spaces

Below not applicable to my scenario.

  1. private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
    {
        if (e.Handled = (e.KeyChar == (char)Keys.Space))
        {
            MessageBox.Show("Spaces are not allowed");
        }
    }
    

  2. textBox1.Text.TrimStart()
    

解决方案

I believe that lazyDBA's answer is correct for your requirements, so with the message box something like:

if (textBox1.Text.Length == 0)
{
   if (e.Handler = (e.KeyChar == (char)Keys.Space))
   {
       MessageBox.Show("space not allowed!");
   }  
}`

这篇关于在windows窗体应用程序验证文本框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆