📄 probpdlg.cpp
字号:
// probpDlg.cpp : implementation file
//
#include "stdafx.h"
#include "probp.h"
#include "probpDlg.h"
#include "CreatSampleData.h"
#include "Inference.h"
#include"Test.h"
#include "Train.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
// CProbpDlg dialog
CProbpDlg::CProbpDlg(CWnd* pParent /*=NULL*/)
: CDialog(CProbpDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CProbpDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
// m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CProbpDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CProbpDlg)
// NOTE: the ClassWizard will add DDX and DDV calls here
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CProbpDlg, CDialog)
//{{AFX_MSG_MAP(CProbpDlg)
ON_BN_CLICKED(IDC_BeginBP, OnBegin)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
void CProbpDlg::OnBegin()
{CPropertySheet m_property;
CTrain m_Train;
CTest m_Test;
CInference m_Inference;
//CCreatSampleData m_Creatsample;
m_property.AddPage(&m_Train);
m_property.AddPage(&m_Test);
m_property.AddPage(&m_Inference);
//m_property.AddPage(&m_Creatsample) ;
m_property.DoModal();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -