📄 menudemoview.h
字号:
// MenuDemoView.h : interface of the CMenuDemoView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_MENUDEMOVIEW_H__AF9A442B_C25A_47C7_8208_70D26EA9BA2C__INCLUDED_)
#define AFX_MENUDEMOVIEW_H__AF9A442B_C25A_47C7_8208_70D26EA9BA2C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
class CMenuDemoView : public CView
{
protected: // create from serialization only
CMenuDemoView();
DECLARE_DYNCREATE(CMenuDemoView)
// Attributes
public:
CMenuDemoDoc* GetDocument();
BOOL IsRun,IsPause,Isinit,Newstart;//判断菜单状态
CBitmap m_CheckBitmap;//
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CMenuDemoView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CMenuDemoView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CMenuDemoView)
afx_msg void OnMenurun();
afx_msg void OnUpdateMenurun(CCmdUI* pCmdUI);
afx_msg void OnMenupouse();
afx_msg void OnUpdateMenupouse(CCmdUI* pCmdUI);
afx_msg void OnMenustop();//声明“停止程序”消息映射函数
afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in MenuDemoView.cpp
inline CMenuDemoDoc* CMenuDemoView::GetDocument()
{ return (CMenuDemoDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_MENUDEMOVIEW_H__AF9A442B_C25A_47C7_8208_70D26EA9BA2C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -