childview.h
来自「电信机房MDF、电源柜监控源码,主要用在通信机房配线设备监控、电源柜监控」· C头文件 代码 · 共 36 行
H
36 行
// ChildView.h : CChildView 类的接口
#pragma once
// CChildView 窗口
class CChildView : public CWnd
{
// 构造
public:
CChildView();
// 属性
public:
// 操作
public:
// 重写
protected:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// 实现
public:
virtual ~CChildView();
// 生成的消息映射函数
protected:
afx_msg void OnPaint();
DECLARE_MESSAGE_MAP()
public:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?