2016-04-14 38 views

回答

0

我不知道具體細節,但你可以添加類似

myRichTextBox.OnTextChanged() { 
    int number = 0; 
    bool checkInt = Int32.TryParse(myRichTextBox.Text, out number); //this checks if the value is int and stores as true or false, it stores the integer value in variable "number" 
    if (checkInt = true && number > 500 ) //check if value in textbox is integer 

     { 

      myRichTextBox.Text = number.ToString(); 
     } 
    else 
    { 
     DialogBox.Show("Please Enter Numbers Only"); 
     myRichTextBox.Text = ""; 

    } 
} 

你可能需要閱讀Int32.TryParse使用,但刷牙這個代碼應該做你想要什麼。

您也可以將此代碼置於按鈕onclick方法中,以在使用文本之前檢查文本框中的值是否爲整數。

0

我會使用keydown事件來檢查按下的鍵是否是您允許的鍵之一。數字非常簡單,可能會添加','和'。'或您選擇的其他角色。

相關問題