GetWindowText
Posted strive-sun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了GetWindowText相关的知识,希望对你有一定的参考价值。
此函数是获取控件或者窗口中的文本
代码:
TCHAR str1[255]; TCHAR str2[] = L"Hello World"; GetWindowText(hWnd_button, str1, 255); if (_tcscmp(str1, str2) == 0) { //it is checkbox }
以上是关于GetWindowText的主要内容,如果未能解决你的问题,请参考以下文章
GetWindowText() 抛出错误并且未被 try/catch 捕获