helptipdlg.h
来自「最新visualC++编程200例书籍源码包括对数据库的操作」· C头文件 代码 · 共 55 行
H
55 行
// HelpTipDlg.h : header file
#if !defined(AFX_HELPTIPDLG_H__ED065C1B_6C7A_4B99_B975_6917B9EA3731__INCLUDED_)
#define AFX_HELPTIPDLG_H__ED065C1B_6C7A_4B99_B975_6917B9EA3731__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "xShadeButton.h" //加入自绘式阴影位图按钮类
#include "HyperLink.h" //超链接类
/////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////
//类名:CHelpTipDlg
//功能:退出对话框类
//////////////////////////////////////////////////
class CHelpTipDlg : public CDialog
{
// Construction
public:
CHelpTipDlg(CWnd* pParent = NULL); // standard constructor
// Dialog Data
//{{AFX_DATA(CHelpTipDlg)
enum { IDD = IDD_HELPTIP_DIALOG };
CHyperLink m_Mail; //在此设置标签的超连接
CxShadeButton m_OK;
CxShadeButton m_Cancel;
//}}AFX_DATA
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CHelpTipDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
protected:
HICON m_hIcon;
// Generated message map functions
//{{AFX_MSG(CHelpTipDlg)
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_HELPTIPDLG_H__ED065C1B_6C7A_4B99_B975_6917B9EA3731__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?