码迷,mamicode.com
首页 > 其他好文 > 详细

combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可

时间:2014-07-14 08:00:32      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:数据   type   ar   c   text   select   

private void tbORcbb_leave(object sender, EventArgs e)
        {
            if (typeof(TextBox).IsInstanceOfType(sender))
            {
                if (((TextBox)sender).Text.IsNumeric() != true)
                {
                    ((TextBox)sender).Focus();
                    ((TextBox)sender).SelectAll();
                }
            }
            else if  (typeof(ComboBox).IsInstanceOfType(sender))
            {
                if (((ComboBox)sender).Text.IsNumeric() != true)
                {
                    ((ComboBox)sender).Focus();
                    ((ComboBox)sender).SelectAll();
                }
            }
        }

combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可,布布扣,bubuko.com

combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可

标签:数据   type   ar   c   text   select   

原文地址:http://www.cnblogs.com/swtool/p/3840196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!