标题:给上次问如何屏蔽数字键的朋友
只看楼主
zhoufeng1988
Rank: 15Rank: 15Rank: 15Rank: 15Rank: 15
来 自:北京
等 级:贵宾
威 望:27
帖 子:1432
专家分:6329
注 册:2009-5-31
结帖率:100%
 问题点数:0 回复次数:2 
给上次问如何屏蔽数字键的朋友
在论坛上看到问如何让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
baikil
Rank: 10Rank: 10Rank: 10
来 自:X星球
等 级:青峰侠
威 望:4
帖 子:282
专家分:1580
注 册:2009-7-20
得分:0 
屏蔽数字键的方法好多.

自创QQ群64885635,方便C#学习交流.希望各项工作路好学都好入!
2009-09-09 16:18
jedypjd
Rank: 13Rank: 13Rank: 13Rank: 13
等 级:蒙面侠
威 望:9
帖 子:1096
专家分:4969
注 册:2009-7-27
得分:0 
有专门的textbox

天涯无岁月,歧路有风尘,百年浑似醉,是非一片云
2009-09-09 21:19



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




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

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