C#中如何限制textbox只能输入英文和数字
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#中如何限制textbox只能输入英文和数字相关的知识,希望对你有一定的参考价值。
拒绝复制粘贴 看到我就举报我是初学者 什么正则啊我不会用 也不能用 请大家说些基础的 说的详细点。。。谢谢了
你好,如果想实现这个功能,必须才用正则表达式你可以不知道怎么写正则表达式,但是基本还是得会用。网上有很多正则表达式,用正则表达式对用户的输入进行逐一验证即可实现同时限制只能输入英文和数字的效果;可以这样定义:const string pattern1 = @"^[0-9]*$"; const string pattern2 =@"^[A-Za-z]+$";在需要验证的时候: if(!Regex.IsMatch(pattern1,textbox1.text) || !Regex.IsMatch(pattern2,textbox1.text)) MessageBox.Show("只能输入英文或者数字");return; 参考技术A 可以在文本框的按健事件中判断当前按的是什么键 ,CHAR本身也提供了判断是字符还是数字的方法。基本代码如下。添加文本框按钮事件处理。
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
if (!char.IsDigit(e.KeyChar) || !char.IsLetter(e.KeyChar))//如果不是字符 也不是数字
e.Handled=true; //当前输入处理置为已处理。即文本框不再显示当前按键信息
参考技术B 你好,我是这样实现的,你看可以不
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
if (!char.IsDigit(e.KeyChar))
if(!char.IsLetter(e.KeyChar))
MessageBox.Show("只能输入数字或英文字母","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
e.Handled=true;
你的TextBox要添加这个事件就行 参考技术C if(!char.IsLetter(e.KeyChar))MessageBox.Show("只能输入数字或英文字母","提示",MessageBoxButtons.OK,MessageBoxIcon.Information);
e.Handled=true;你的TextBox要添加这个事件就行
追问:
这个好
我用的是这个哦
正则我还没学呢。
不能用也不会用啊,,,,纠结
回答:
呵呵,那就采纳呗
^_^
追问:
晕倒
我忘了.0.0 参考技术D 用正则表达式
WPF TextBox限制只能输入数字的两种方法
文本框中只能输入数字,一个常见的功能喽,今天就来看看如何实现它~
下面就看看代码
思路都写在xaml里面了,
MainWindow.xaml:
<Window x:Class="wpfcore.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:wpfcore"
xmlns:controls="http://metro.mahapps.com/winfx/xaml/controls"
mc:Ignorable="d"
Background="#2D2D30"
SnapsToDevicePixels="True"
FontSize="18"
UseLayoutRounding="True"
Title="MainWindow" Width="820" Height="340">
<StackPanel>
<!--第一种方法,直接设置禁用输入法,并添加PreviewTextInput事件,如果不满足条件,就禁止输入-->
<TextBox InputMethod.IsInputMethodEnabled="False" PreviewTextInput="TextBox_PreviewTextInput" Margin="10"/>
<!--第二种方法,写一个附加属性,在属性改变时,给textbox添加上相应事件,这个写完后,复用时就方便喽-->
<TextBox local:TextBoxAttachedProperties.IsOnlyNumber="true" Margin="10"/>
</StackPanel>
</Window>
MainWindow.cs:
using System.Text.RegularExpressions;
using System.Windows;
namespace wpfcore
{
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
DataContext = this;
}
private void TextBox_PreviewTextInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
{
e.Handled = new Regex("[^0-9]+").IsMatch(e.Text);
}
}
}
第二种方法:
新建一个TextBoxAttachedProperties.cs文件,定义附加属性:
using System.Text.RegularExpressions;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Input;
namespace wpfcore
{
public class TextBoxAttachedProperties
{
public static bool GetIsOnlyNumber(DependencyObject obj)
{
return (bool)obj.GetValue(IsOnlyNumberProperty);
}
public static void SetIsOnlyNumber(DependencyObject obj, bool value)
{
obj.SetValue(IsOnlyNumberProperty, value);
}
public static readonly DependencyProperty IsOnlyNumberProperty =
DependencyProperty.RegisterAttached("IsOnlyNumber", typeof(bool), typeof(TextBox), new PropertyMetadata(false,
(s, e) =>
{
if (s is TextBox textBox)
{
textBox.SetValue(InputMethod.IsInputMethodEnabledProperty, !(bool)e.NewValue);
textBox.PreviewTextInput -= TxtInput;
if (!(bool)e.NewValue)
{
textBox.PreviewTextInput += TxtInput;
}
}
}));
private static void TxtInput(object sender, System.Windows.Input.TextCompositionEventArgs e)
{
e.Handled = new Regex("[^0-9]+").IsMatch(e.Text);
}
}
}
ok,结束喽
如果喜欢,点个赞呗~
以上是关于C#中如何限制textbox只能输入英文和数字的主要内容,如果未能解决你的问题,请参考以下文章
C#中如何限制Textbox控件中只能输入数字,要能用退格的
C#如何让TEXTBOX只能输入英文状态下的数字并且限制位数
c# 的WinForm 中 textbox内如何限制只输入为0-100之间的数字?
C#中的textbox中如何设置只能输入数字,如果是其他或小数点都不能输入?
C#开发wince平台下的winform程序,textbox的keypress事件无法触发,本意是想限制textbox只能输入数字。