📄 cwindow.h
字号:
// CMAIN LIB - APPLICATION AND DIRECT WRAPPER
//
// Written by Mauricio Teichmann Ritter
//
// Copyright (C) 2002, Brazil. All rights reserved.
//
//
#include "stdafx.h"
long FAR PASCAL MainWndproc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam );
#ifndef _APPLIB_WNDCLASS_
#define _APPLIB_WNDCLASS_
class cWindow
{
private:
LPSTR m_lpszClassName;
public:
HWND GetHWnd();
cWindow()
{
}
~cWindow()
{
if(m_hWnd)
{
DestroyWindow(m_hWnd);
}
}
BOOL Create(LPSTR lpszWindowName);
BOOL RegisterWindow(LPSTR);
private:
HWND m_hWnd;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -