2011-06-17 [C++\Cli]只允許鍵盤數字輸入 1967 0 C++\Cli 2011-06-18 摘要:只允許鍵盤數字輸入 if (Char::IsDigit(e->KeyChar) || Char::IsControl(e->KeyChar) ||e->KeyChar == 46 || e->KeyChar == '-') { e->Handled = false; } else { e->Handled = true; } 回首頁