⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inputdlg.h

📁 几种排序算法的动画演示,包括冒泡排序,选择排序,插入排序,快速排序,堆排序,支持单步演示,
💻 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 + -