📄 properitiesdialog.cpp
字号:
// ProperitiesDialog.cpp : implementation file
//
#include "stdafx.h"
#include "SegyView.h"
#include "ProperitiesDialog.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CProperitiesDialog dialog
CProperitiesDialog::CProperitiesDialog(CWnd* pParent /*=NULL*/)
: CDialog(CProperitiesDialog::IDD, pParent)
{
//{{AFX_DATA_INIT(CProperitiesDialog)
m_radioDataType = -1;
m_editBeginTrace = _T("");
m_editEndTrace = _T("");
m_editFrequency = _T("");
m_editTime = _T("");
//}}AFX_DATA_INIT
}
void CProperitiesDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CProperitiesDialog)
DDX_Radio(pDX, IDC_RADIO1, m_radioDataType);
DDX_Text(pDX, IDC_EDIT_BEGIN, m_editBeginTrace);
DDX_Text(pDX, IDC_EDIT_END, m_editEndTrace);
DDX_Text(pDX, IDC_EDIT_FREQUENCY, m_editFrequency);
DDX_Text(pDX, IDC_EDIT_TIME, m_editTime);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CProperitiesDialog, CDialog)
//{{AFX_MSG_MAP(CProperitiesDialog)
// NOTE: the ClassWizard will add message map macros here
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CProperitiesDialog message handlers
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -