我正在用Visual C ++编写程序,我需要测试TextBox是否为空。例如(在伪代码中):
if ( textBox is empty ) {
// etc..
}
我该如何测试这种情况?
答案 0 :(得分:0)
if(string.isNullOrEmpty(textbox.text)){//Your code Here}
可能是这样的。
答案 1 :(得分:0)
如果你直接在Win32上做,那就像这样:
if ( SendMessage( hWndTextBox, WM_GETTEXTLENGTH, 0, 0 ) == 0 )
{
}
如果是MFC,那么:
if ( textBox.GetWindowTextLength() == 0 )
{
}