📄 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 + -