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