📄 dialogtest1view.h
字号:
// DialogTest1View.h : interface of the CDialogTest1View class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_DIALOGTEST1VIEW_H__6D9C1CD8_1C89_40A0_96BD_21A17B5A8039__INCLUDED_)
#define AFX_DIALOGTEST1VIEW_H__6D9C1CD8_1C89_40A0_96BD_21A17B5A8039__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "DlgNonModal.h"
#include "DialogTest1Doc.h"
class CDialogTest1View : public CView
{
protected: // create from serialization only
CDialogTest1View();
DECLARE_DYNCREATE(CDialogTest1View)
// Attributes
public:
CDialogTest1Doc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDialogTest1View)
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:
CDlgNonModal* m_NoModalDlg;
int m_Red;
int m_Green;
int m_Blue;
void setColor(int r, int g, int b);
virtual ~CDialogTest1View();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
//{{AFX_MSG(CDialogTest1View)
afx_msg void OnMenuitemModal();
afx_msg void OnMenuitemNomodal();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in DialogTest1View.cpp
inline CDialogTest1Doc* CDialogTest1View::GetDocument()
{ return (CDialogTest1Doc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DIALOGTEST1VIEW_H__6D9C1CD8_1C89_40A0_96BD_21A17B5A8039__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -