📄 wmsheet.h
字号:
#if !defined(AFX_WMSHEET_H__8181C5CB_DFE8_423C_A1D1_5C58D860C24A__INCLUDED_)
#define AFX_WMSHEET_H__8181C5CB_DFE8_423C_A1D1_5C58D860C24A__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// WMSheet.h : header file
//
/////////////////////////////////////////////////////////////////////////////
// CWMSheet
const WORD WM_TRAYNOTIFY = WM_USER + 555;
class CWMSheet : public CPropertySheetEx
{
DECLARE_DYNAMIC(CWMSheet)
// Construction
public:
CWMSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
CWMSheet(LPCTSTR pszCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
// Attributes
public:
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CWMSheet)
public:
virtual BOOL OnInitDialog();
virtual BOOL PreTranslateMessage(MSG* pMsg);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CWMSheet();
// Generated message map functions
protected:
LRESULT OnHotKey(WPARAM wParam, LPARAM lParam);
LRESULT OnTrayNotify(WPARAM wParam, LPARAM lParam);
virtual void OnOK();
//{{AFX_MSG(CWMSheet)
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
afx_msg void OnMenuCheckVersion();
afx_msg void OnMenuAbout();
afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnTrayOpen();
afx_msg void OnTrayExit();
afx_msg void OnTrayAbout();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
CMenu m_menuTray;
NOTIFYICONDATA m_nid;
HICON m_hIcon;
};
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_WMSHEET_H__8181C5CB_DFE8_423C_A1D1_5C58D860C24A__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -