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

📄 dialog2.cpp

📁 FF快速傅立叶变换算法构建的DFB
💻 CPP
字号:
// dialog2.cpp : implementation file
//

#include "stdafx.h"
#include "DFB1.h"
#include "dialog2.h"

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

/////////////////////////////////////////////////////////////////////////////
// Cdialog2 dialog


Cdialog2::Cdialog2(CWnd* pParent /*=NULL*/)
	: CDialog(Cdialog2::IDD, pParent)
{
	//{{AFX_DATA_INIT(Cdialog2)
	m_nstartfreq = 0.0f;
	m_nendfreq = 0.0f;
	m_nDM = 0.0f;
	//}}AFX_DATA_INIT
}


void Cdialog2::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(Cdialog2)
	DDX_Text(pDX, IDC_EDIT3, m_nstartfreq);
	DDX_Text(pDX, IDC_EDIT4, m_nendfreq);
	DDX_Text(pDX, IDC_EDIT1, m_nDM);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// Cdialog2 message handlers

⌨️ 快捷键说明

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