标题:给上次问如何屏蔽数字键的朋友
取消只看楼主
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



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-285216-1-1.html




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

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