1. 程式人生 > >非空驗證

非空驗證

ring con str text return button 驗證 txt equal

public void feikong()
{
if (this.txtChaxun.Text.Trim().Equals(string.Empty))
{
MessageBox.Show("請輸入用戶名", "信息提示", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
return;
}
}

非空驗證