tooldlg.h

来自「用visual basic语言开发的进行RSA加密的代码」· C头文件 代码 · 共 36 行

H
36
字号
#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 + =
减小字号Ctrl + -
显示快捷键?