반응형
<XAML>
<TextBox x:Name="txtBox"
PreviewTextInput="txtPrintCnt_PreviewTextInput">
<CS>
private void txtPrintCnt_PreviewTextInput(object sender, TextCompositionEventArgs e)
{
e.Handled = new Regex("[^0-9]+").IsMatch(e.Text);
}
참 쉽죠잉~~
반응형
'Development > WPF' 카테고리의 다른 글
『 WPF』TextBox Scrollbar (0) | 2023.08.04 |
---|---|
[WPF] ComboBox 에 Checked / UnChecked 이벤트 (0) | 2022.01.16 |
[WPF] Grid에 GridSplitter 넣기 (0) | 2021.12.22 |
[WPF] FileDialog / FolderDialog (0) | 2021.01.05 |
[WPF] 다른 프로젝트의 ResourceDictionary (리소스사전) 참조 (추가) 하기 (0) | 2020.12.14 |