MFC的超链接类HyperLink的简单使用

需要一个有超链接功能的CStatic,本来想自己实现,在网上找了下,找到了这个HyperLink,用法很简单

 

// CDhfuelApp message handlers
BOOL CAboutDlg::OnInitDialog()
{
    CDialog::OnInitDialog();


    CString url("http://www.163.cn");
    m_Link.SubclassDlgItem(IDC_STATICURL,this); // IDC_STATIC_URL是相应CStatic控件的资源号。
    m_Link.SetURL(url); //超链接文本

    return TRUE;  // return TRUE unless you set the focus to a control
                  // EXCEPTION: OCX Property Pages should return FALSE
}

你可能感兴趣的:(perl)