WTL自定义控件:SubclassWindow的实现
2021-05-19 05:29
标签:false 标记 tst style its color back hwnd atl 自定义了一个edit类如下: 其SubclassWindow函数实现如下: 注意:标记黄色的部分需要一致。 WTL自定义控件:SubclassWindow的实现 标签:false 标记 tst style its color back hwnd atl 原文地址:https://www.cnblogs.com/luoluosha/p/11711467.html1 class CCheckEditEx : public CWindowImpl
1 BOOL CCheckEditEx::SubclassWindow(HWND hwnd)
2 {
3 ATLASSERT(NULL == ::GetWindow(hwnd, GW_CHILD));
4 if (CWindowImpl::SubclassWindow(hwnd))
5 {
6 //执行自己的初始化函数
7 InitStr();
8
9 return TRUE;
10 }
11 return FALSE;
12 }
文章标题:WTL自定义控件:SubclassWindow的实现
文章链接:http://soscw.com/index.php/essay/87529.html