📄 demonstratectlview.h
字号:
// DemonstrateCTLView.h : interface of the CDemonstrateCTLView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_DEMONSTRATECTLVIEW_H__29AC8E2E_E577_408E_9ECB_4A94F962602C__INCLUDED_)
#define AFX_DEMONSTRATECTLVIEW_H__29AC8E2E_E577_408E_9ECB_4A94F962602C__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
/*---------------------------Sammy2006.11.1------------------------------
加上下面这个语句的作用是让使用#include "DemonstrateCTLView.h"的类能知道
CDemonstrateCTLView 中的使用的CDemonstrateCTLDoc类是在外部声明的。
-----------------------------------------------------------------------*/
class CDemonstrateCTLDoc;
//#include "DemonstrateCTLDoc.h"
class CDemonstrateCTLView : public CView
{
protected: // create from serialization only
CDemonstrateCTLView();
DECLARE_DYNCREATE(CDemonstrateCTLView)
// Attributes
public:
CDemonstrateCTLDoc* GetDocument();
BOOL m_bIsSelHello;//TextContent1;
BOOL m_bIsSelWorld;
BOOL m_bIsSelExcalmatoryMark;
long m_lTextColor;
int m_nTextAlign;
int m_nBkMode;
COLORREF qw;
CComboBox *m_pmydynamicCom;
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CDemonstrateCTLView)
public:
virtual void OnDraw(CDC* pDC); // overridden to draw this view
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
virtual void OnPrepareDC(CDC* pDC, CPrintInfo* pInfo = NULL);
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 ~CDemonstrateCTLView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CDemonstrateCTLView)
afx_msg void OnModalandctl();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
#ifndef _DEBUG // debug version in DemonstrateCTLView.cpp
inline CDemonstrateCTLDoc* CDemonstrateCTLView::GetDocument()
{ return (CDemonstrateCTLDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_DEMONSTRATECTLVIEW_H__29AC8E2E_E577_408E_9ECB_4A94F962602C__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -