📄 dialod2.cpp
字号:
// Dialod2.cpp : implementation file
//
#include "stdafx.h"
#include "遗传算法.h"
#include "Dialod2.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDialod2 dialog
CDialod2::CDialod2(CWnd* pParent /*=NULL*/)
: CDialog(CDialod2::IDD, pParent)
{
//{{AFX_DATA_INIT(CDialod2)
m_xmute = 0;
//}}AFX_DATA_INIT
}
void CDialod2::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CDialod2)
DDX_Text(pDX, IDC_EDIT1, m_xmute);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CDialod2, CDialog)
//{{AFX_MSG_MAP(CDialod2)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDialod2 message handlers
void CDialod2::OnOK()
{
// TODO: Add extra validation here
UpdateData(FALSE);
CDialog::OnOK();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -