📄 inputdlg.h
字号:
#pragma once
class CInputDlg
{
public:
static int Register(HINSTANCE hInst);
CInputDlg(void);
int DoModal(HWND hWndParent,char * Prompt,int nVal=0);
int Value;
private:
static const char * const lpClassName;
static HINSTANCE hInstance;
static LRESULT WinProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam);
char * lpPrompt;
HWND hWnd,hParent,hEdit,hStatic,hOk,hCancel;
int RetId;
HFONT hFont;
void Create();
int Run();
void OnCommand(UINT wmId);
void OnCreate(HWND hWnd);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -