Windows Phone app 8中PhoneTextBox的输入验证

时间:2014-12-19 03:17:04

标签: windows-phone-8

我正在开发一个Windows Phone应用程序。在我的应用程序中,我想使用

windows phone toolkit :PhoneTextBox
对textbox.i'm进行输入验证 当用户单击提交按钮后无法填充文本框时,需要提醒消息。有没有办法做到这一点?

谢谢!

3 个答案:

答案 0 :(得分:0)

Button_click事件中,添加条件

if (!String.IsNullOrEmpty(PhoneTextBox.Text))
{
    //your action here
}

答案 1 :(得分:0)

Button的事件处理程序中,请确保您拥有:

your eventhandler(){
 if(string.IsNullOrWhiteSpace(this.textBox1.Text)) //here "tb" is the textbox name, in case of that give your textbox's name.
 {
 MessageBox.Show("TextBox is empty");
 }  
}

或者尝试使用String.IsNullOrWhiteSpace来检查字符串是否为空。

if (String.IsNullOrWhiteSpace(Name)) //give the name of your textbox.Text
{
//Handled
}

参考:String.IsNullOrWhiteSpace Method

答案 2 :(得分:0)

Button_click,你必须检查。请尝试以下代码。

if (!String.IsNullOrEmpty(YourTextBox.Text)) // it check it text box is null or empty
{
  //your action here
}