首页 > 代码库 > combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可
combobox和textbox中输入数据为非数字leave时的公用事件,只需要在控件的leave事件中选择本事件即可
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();
}
}
}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。