?? explorerview.h
字號:
// explorerView.h : CexplorerView 類的接口
//
#pragma once
class CexplorerView : public CHtmlView
{
protected: // 僅從序列化創建
CexplorerView();
DECLARE_DYNCREATE(CexplorerView)
// 屬性
public:
CexplorerDoc* GetDocument() const;
// 操作
public:
// 重寫
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
protected:
virtual void OnInitialUpdate(); // 構造后第一次調用
// 實現
public:
virtual ~CexplorerView();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函數
protected:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedButton1();
afx_msg void OnBnClickedButton2();
afx_msg void OnBnClickedButton3();
afx_msg void OnBnClickedButton4();
};
#ifndef _DEBUG // explorerView.cpp 的調試版本
inline CexplorerDoc* CexplorerView::GetDocument() const
{ return reinterpret_cast<CexplorerDoc*>(m_pDocument); }
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -