GetWindowText
2021-03-14 12:31
阅读:625
标签:color code char s 文本 col har style ext char 此函数是获取控件或者窗口中的文本 代码: GetWindowText 标签:color code char s 文本 col har style ext char 原文地址:https://www.cnblogs.com/strive-sun/p/12487917.html
TCHAR str1[255];
TCHAR str2[] = L"Hello World";
GetWindowText(hWnd_button, str1, 255);
if (_tcscmp(str1, str2) == 0)
{
//it is checkbox
}
评论
亲,登录后才可以留言!