VC遍历窗体控件的实现
生活随笔
收集整理的這篇文章主要介紹了
VC遍历窗体控件的实现
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
遍歷窗體所有控件代碼如下:
CWnd* pwndChild = GetWindow(GW_CHILD);while (pwndChild)
{
//....to do something
pwndChild = pwndChild->GetNextWindow();
}
如果只想得到某一類 ,比如button的。代碼如下:
// 遍歷得到頁面中的所有Button控件,依次設定其樣式和顏色CWnd* pWnd = GetWindow(GW_CHILD);
char cClassName[255]={0};
while(pWnd)
{
//得到控件的類名,主要有Edit,Button,Static等等
GetClassName(pWnd->GetSafeHwnd(),cClassName,255);
if(strcmp(cClassName,"Button") ==0) //是Button控件
{
CXTButton *pBtn = (CXTButton*) pWnd;
pBtn->SetXButtonStyle(BS_XT_XPFLAT);
pBtn->SetColorFace(BUTTON_BKCOLOR); //按鈕背景色
}
pWnd = pWnd->GetWindow(GW_HWNDNEXT);
}
原文地址:?http://blog.csdn.net/guanchanghui/article/details/1491715
轉載于:https://www.cnblogs.com/likebeta/archive/2011/07/25/2116534.html
總結
以上是生活随笔為你收集整理的VC遍历窗体控件的实现的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Cvmat IplImage
- 下一篇: 纯真IP库的结构分析及一个查询类