⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dlgsksinfo.cpp

📁 提供交互的方式选取合适的震相
💻 CPP
字号:
// DlgSKSinfo.cpp : implementation file
//

#include "stdafx.h"
#include "wshm.h"
#include "DlgSKSinfo.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDlgSKSinfo dialog


CDlgSKSinfo::CDlgSKSinfo(CWnd* pParent /*=NULL*/)
	: CDialog(CDlgSKSinfo::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDlgSKSinfo)
	m_Delay = _T("");
	m_Direction = _T("");
	//}}AFX_DATA_INIT
}


void CDlgSKSinfo::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDlgSKSinfo)
	DDX_Text(pDX, IDC_STATICdelay, m_Delay);
	DDV_MaxChars(pDX, m_Delay, 256);
	DDX_Text(pDX, IDC_STATICdirection, m_Direction);
	DDV_MaxChars(pDX, m_Direction, 256);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CDlgSKSinfo, CDialog)
	//{{AFX_MSG_MAP(CDlgSKSinfo)
		// NOTE: the ClassWizard will add message map macros here
	ON_WM_DESTROY()
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDlgSKSinfo message handlers

void CDlgSKSinfo::OnDestroy() 
{
	CDialog::OnDestroy();

	delete this;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -