?? newmsgbox.h
字號:
//NetTalk
/*------------------------------------------------------------------------------*\
=============================
模塊名稱: NewMsgBox.h
=============================
[版權(quán)]
2000-2002 115軟件工廠 版權(quán)所有
\*------------------------------------------------------------------------------*/
#ifndef _NEWMSGBOX_H_
#define _NEWMSGBOX_H_
#include "GraphDlg.h"
#include "resource.h"
class CMsgBox:public CGraphDlg
{
public:
int MsgBox(HWND hWnd,char* pszTxt,char* pszCap,UINT utype,UINT uIcon);
static int MessageBox(HWND hWnd,char* pszTxt,char* pszCap,UINT utype,UINT uIcon);
static int MessageBox(HWND hWnd,const int iTxtId, const int iCapId, UINT utype,UINT uIcon);
int MsgBox(HWND hWnd, int iTxtId, int iCapId, UINT utype,UINT uIcon);
virtual ~CMsgBox();
CMsgBox();
protected:
UINT m_uIcon;
UINT m_uType;
char m_szCap[128];
char m_szTxt[256];
virtual void OnEraseBkgnd(HDC hdc);
virtual BOOL OnCommand(WPARAM wParam,LPARAM lParam);
virtual BOOL OnInitDialog();
virtual LRESULT WndProc(UINT uMsg, WPARAM wParam, LPARAM lParam);
};
#endif
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -