📄 setpara.cpp
字号:
// SetPara.cpp : implementation file
//
#include "stdafx.h"
#include "Apriori.h"
#include "SetPara.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CSetPara dialog
CSetPara::CSetPara(CWnd* pParent /*=NULL*/)
: CDialog(CSetPara::IDD, pParent)
{
//{{AFX_DATA_INIT(CSetPara)
m_ItemCount = 0;
m_Item_Supp = 0.0;
//}}AFX_DATA_INIT
}
void CSetPara::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CSetPara)
DDX_Text(pDX, IDC_EDIT3, m_ItemCount);
DDX_Text(pDX, IDC_EDIT4, m_Item_Supp);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CSetPara, CDialog)
//{{AFX_MSG_MAP(CSetPara)
ON_EN_CHANGE(IDC_EDIT3, OnChangeEdit3)
ON_BN_CLICKED(IDC_BUTTON1, OnButton1)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CSetPara message handlers
//DEL void CSetPara::OnChangeEdit3()
//DEL {
//DEL // TODO: If this is a RICHEDIT control, the control will not
//DEL // send this notification unless you override the CDialog::OnInitDialog()
//DEL // function and call CRichEditCtrl().SetEventMask()
//DEL // with the ENM_CHANGE flag ORed into the mask.
//DEL
//DEL // TODO: Add your control notification handler code here
//DEL
//DEL }
void CSetPara::OnChangeEdit3()
{
// TODO: If this is a RICHEDIT control, the control will not
// send this notification unless you override the CDialog::OnInitDialog()
// function and call CRichEditCtrl().SetEventMask()
// with the ENM_CHANGE flag ORed into the mask.
// TODO: Add your control notification handler code here
}
void CSetPara::OnButton1()
{
// TODO: Add your control notification handler code here
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -