www.pudn.com > ntshell.rar > aboutdlg.cpp


// aboutdlg.cpp : implementation of the CAboutDlg class 
// 
///////////////////////////////////////////////////////////////////////////// 
 
#include "stdafx.h" 
#include "resource.h" 
#include "common.h" 
 
#include "aboutdlg.h" 
 
LRESULT CAboutDlg::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lParam*/, BOOL& /*bHandled*/) 
{ 
	CenterWindow(GetParent()); 
	m_wndLink.SubclassWindow(GetDlgItem(IDC_EMAIL)); 
	m_wndLink.SetHyperLink("mailto:ktwyz@163.com"); 
	return TRUE; 
} 
 
LRESULT CAboutDlg::OnCloseCmd(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) 
{ 
	EndDialog(wID); 
	return 0; 
}