screenshotview.h
来自「ppc上截取屏幕的软件」· C头文件 代码 · 共 75 行
H
75 行
// ScreenShotView.h : interface of the CScreenShotView class
//
/////////////////////////////////////////////////////////////////////////////
#if !defined(AFX_SCREENSHOTVIEW_H__ADEED89D_2567_4179_9B84_703C34EAAC2C__INCLUDED_)
#define AFX_SCREENSHOTVIEW_H__ADEED89D_2567_4179_9B84_703C34EAAC2C__INCLUDED_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
#include "winceKBhook.h"
class CScreenShotView : public CFormView
{
protected: // create from serialization only
CScreenShotView();
DECLARE_DYNCREATE(CScreenShotView)
public:
//{{AFX_DATA(CScreenShotView)
enum{ IDD = IDD_SCREENSHOT_FORM };
// NOTE: the ClassWizard will add data members here
//}}AFX_DATA
// Attributes
public:
CScreenShotDoc* GetDocument();
// Operations
public:
// Overrides
// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CScreenShotView)
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
// Implementation
public:
virtual ~CScreenShotView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// Generated message map functions
protected:
//{{AFX_MSG(CScreenShotView)
afx_msg void OnEnable();
afx_msg void OnOK();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
private:
BOOL m_bEnable;
};
#ifndef _DEBUG // debug version in ScreenShotView.cpp
inline CScreenShotDoc* CScreenShotView::GetDocument()
{ return (CScreenShotDoc*)m_pDocument; }
#endif
/////////////////////////////////////////////////////////////////////////////
//{{AFX_INSERT_LOCATION}}
// Microsoft eMbedded Visual C++ will insert additional declarations immediately before the previous line.
#endif // !defined(AFX_SCREENSHOTVIEW_H__ADEED89D_2567_4179_9B84_703C34EAAC2C__INCLUDED_)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?