string input = Microsoft.VisualBasic.Interaction.InputBox("To change your email, enter it below. The current email on file is " + ParseUser.CurrentUser.Email, "Change Email", "New Email", -1, -1);
鑑於上述代碼,如何檢查取消按鈕或確定按鈕是否被按下?如果用戶按下確定,我想運行一個方法。如果他們按取消,那麼我不會運行該方法。如何檢查輸入框中是否按下取消按鈕或確定按鈕
檢查字符串是否爲0個字符將不會執行,因爲即使用戶開始鍵入並按下取消,我仍然不希望該方法運行。
它們在取消時是否返回空字符串?爲什麼檢查空字符串不起作用? –