本文讲述在Windows Mobile和Wince(Windows Embedded CE)下进行WTL开发,如何加入超链接(HyperLink)的支持。
步骤如下:
1.#include <atlctrlx.h>
#include <atlctrlx.h>
2.在对话框中加入一个Static控件。
3.修改Static控件的ID。
4.进行DDX绑定。
注意Member type需要手工输入 CHyperLink
DDX type必须使用Control,不能使用Control Handler。否则编译时会出现下面错误。
Error 1 error C2679: binary '=' : no operator found which takes a right-hand operand of type 'ATL::CWindow' (or there is no acceptable conversion)
5.加入处理代码
m_wndWebsite.SetHyperLinkExtendedStyle ( HLINK_USETAGS ); //Set style
m_wndWebsite.SetLabel(_T("visit <a>www.cnblogs.com/procoder</a>")); //Set display label
m_wndWebsite.SetHyperLink(_T("http://www.cnblogs.com/procoder/")); //Set hyper link
完成了,显示效果如下:
本文转自Jake Lin博客园博客,原文链接:http://www.cnblogs.com/procoder/archive/2009/11/12/Windows-Mobile-WTL-HyperLink.html,如需转载请自行联系原作者