| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 920 人关注过本帖
标题:给上次问如何屏蔽数字键的朋友
取消只看楼主 加入收藏
zhoufeng1988
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:北京
等 级:贵宾
威 望:27
帖 子:1432
专家分:6329
注 册:2009-5-31
结帖率:100%
收藏
 问题点数:0 回复次数:0 
给上次问如何屏蔽数字键的朋友
在论坛上看到问如何让textBox不能输入数字。使用两个事件处理一下就可以了。
代码如下:
   
程序代码:
public partial class Form1 : Form
    {
        private string initString = null;
        private bool hasEnterNumber = false;

        public Form1()
        {
            InitializeComponent();
            this.textBox1.KeyPress += new KeyPressEventHandler(textBox1_KeyPress);
            this.textBox1.TextChanged += new EventHandler(textBox1_TextChanged);
        }

        void textBox1_TextChanged(object sender, EventArgs e)
        {
            if (this.hasEnterNumber)
            {
                this.textBox1.Text = this.initString;
                this.hasEnterNumber = false;
                this.textBox1.SelectionStart = this.textBox1.Text.Length;
            }
        }

        void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if ( (int)e.KeyChar >= (int)Keys.D0 && (int)e.KeyChar <= (int)Keys.D9)
            {
                this.hasEnterNumber = true;
                initString = this.textBox1.Text;
            }
        }
    }
搜索更多相关主题的帖子: 朋友 数字 
2009-09-09 13:48
快速回复:给上次问如何屏蔽数字键的朋友
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.016329 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved