?? tooldlg.h
字號:
#include "BigInt.h"
class CToolDlg : public CDialog
{
public:
CToolDlg(CWnd* pParent = NULL); // standard constructor
//{{AFX_DATA(CToolDlg)
enum { IDD = IDD_TOOL_FORM };
CString m_A;
CString m_B;
CString m_C;
//}}AFX_DATA
CBigInt A,B,C;
protected:
//{{AFX_VIRTUAL(CToolDlg)
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL
//{{AFX_MSG(CToolDlg)
afx_msg void OnButtonAdd();
afx_msg void OnButtonDec();
afx_msg void OnButtonDiv();
afx_msg void OnButtonEuc();
afx_msg void OnButtonExp();
afx_msg void OnButtonHex();
afx_msg void OnButtonMod();
afx_msg void OnButtonMul();
afx_msg void OnButtonSub();
afx_msg void OnButtonSqrt();
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -