private void txtLastName_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (!char.IsDigit((char)e.Key)) e.Handled = true;
}
ただし、キーボードのすべてのキーをサポートしているわけではありません。
private void txtLastName_PreviewKeyDown(object sender, KeyEventArgs e)
{
if (!char.IsDigit((char)e.Key)) e.Handled = true;
}
ただし、キーボードのすべてのキーをサポートしているわけではありません。