Visual Studio/WPF > link > TextBox에 숫자만 입력할 수 있음 > PreviewTextInput 사용 | e.Handled = true;

운영 환경
Windows 7 Pro (32bit)
Microsoft Visual Studio 2017 Community

TextBox에 숫자만 입력할 수 있게 하려면 어떻게 할까.

link1



h tps : // s t c ゔ ぇ rf ぉ w. 코 m / 쿠에 s 치온 s / 1268552 / HOW-E-I-G-T-X-B-X-ON LY-ASE PTE-Numeri-C-INP-TO-WPF

answered Aug 12 '09 at 20:46
Ray
가 도움이 되었다.

TextBox에는 PreviewTextInput이라는 지정이 가능하며, 거기서 e.Handled에 true/false를 대입하는 것 같다.
e.Handled=true;이면 처리가 취소됩니다.

MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
//
using System.Text.RegularExpressions;

namespace _170612_t1610_onlyNumeric
{
    /// <summary>
    /// MainWindow.xaml の相互作用ロジック
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void uxMynumber_PreviewTextInput(object sender, TextCompositionEventArgs e)
        {
            Regex regex = new Regex("[^0-9.-]+");
            var text = uxMynumber.Text + e.Text;
            e.Handled = regex.IsMatch(text);
        }
    }
}

MainWindow.xaml
<Window x:Class="_170612_t1610_onlyNumeric.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:_170612_t1610_onlyNumeric"
        mc:Ignorable="d"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <StackPanel Margin="20">
            <TextBlock Text="AlphaNumeric"/>
            <TextBox x:Name="uxAnyText" Width="150" Height="25"/>
            <TextBlock Text="Numeric"/>
            <TextBox x:Name="uxMynumber" 
                     PreviewTextInput="uxMynumber_PreviewTextInput"
                     Width="150" Height="25"/>
        </StackPanel>
    </Grid>
</Window>

수치 밖에 받아들이지 않도록 할 수 있었다.


뒤에 ---는 입력할 수 있다.

link2: 별안



nurs의 일기
WPF: 숫자만 허용 TextBox
htp // d. 하테나. 네. jp/누 rs/20150427/1430150521

이쪽의 구현에서는, 선두에 +도 입력 가능.

link1의 v0.2



숫자 뒤의 "-"를 입력 불가로 해 보았다.

MainWindow.xaml.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
//
using System.Text.RegularExpressions;

namespace _170612_t1610_onlyNumeric
{
    /// <summary>
    /// MainWindow.xaml の相互作用ロジック
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void uxMynumber_PreviewTextInput(object sender, TextCompositionEventArgs e)
        {
            Regex regex = new Regex("[^0-9.-]+");
            if (uxMynumber.Text.Length > 0 && e.Text == "-")
            {
                e.Handled = true;
                return;
            }

            var text = uxMynumber.Text + e.Text;
            e.Handled = regex.IsMatch(text);
        }
    }
}

코멘트



(추기: 2019-07-16)

@nqdior 님의 코멘트 에서 하이픈도 제한하는 방법을 가르쳐 주셨습니다.

정보 감사입니다.

좋은 웹페이지 즐겨찾기