📄 gdialog.h
字号:
// GDialog.h: interface for the GDialog class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_GDialog_H__CCD81788_0DC6_43E5_AA6D_7E79F67B25C0__INCLUDED_)
#define AFX_GDialog_H__CCD81788_0DC6_43E5_AA6D_7E79F67B25C0__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "GWnd.h"
class GDialog : public GWnd
{
private:
GWnd* m_pOldFocus;
public:
int m_nDlgResult;
int MessageBox(LPCTSTR szText,LPCTSTR szCaption,int nType);
void OnNcPaint();
void OnCreate();
void OnMove();
void DrawControls();
void OnPaint();
void AddControl(GWnd* pChild,LPCTSTR szText,int nStyle);
void Create();
void Close();
int DoModal();
GDialog();
~GDialog();
virtual void WndProc(int nMessage, int wParam, int lParam);
};
#endif // !defined(AFX_GDialog_H__CCD81788_0DC6_43E5_AA6D_7E79F67B25C0__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -