📄 msgbox.h
字号:
//
// MsgBox.h - cMsgBox definition
// Rev. 2
//
// by Razorfish (razorfish2k@bigfoot.com)
// ------------------------------------------------------------------
#ifndef MSGBOX_H
#define MSGBOX_H
class cMsgBox {
private:
TCHAR *ptcMsg; // Message Box Message
TCHAR *ptcTitle; // Message Box Title
UINT uiStyle; // Message Box Style
public:
cMsgBox(TCHAR *ptcM, TCHAR *ptcT); // Constructor
~cMsgBox(); // Destructor
int setStyle(UINT uiS); // Change Message Box Style
int show(void); // Show Message Box
};
#endif MSGBOX_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -