我正在开发一个Windows Phone应用程序。在我的应用程序中,我想使用
windows phone toolkit :PhoneTextBox对textbox.i'm进行输入验证 当用户单击提交按钮后无法填充文本框时,需要提醒消息。有没有办法做到这一点?
谢谢!
答案 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
}
答案 2 :(得分:0)
在Button_click
,你必须检查。请尝试以下代码。
if (!String.IsNullOrEmpty(YourTextBox.Text)) // it check it text box is null or empty
{
//your action here
}