observe.cpp

来自「基于VC环境下的组合导航卡尔曼滤波仿真器设计」· C++ 代码 · 共 54 行

CPP
54
字号
// Observe.cpp : implementation file
//

#include "stdafx.h"
#include "Kalman.h"
#include "Observe.h"

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

/////////////////////////////////////////////////////////////////////////////
// CObserve dialog


CObserve::CObserve(CWnd* pParent /*=NULL*/)
	: CDialog(CObserve::IDD, pParent)
{
	//{{AFX_DATA_INIT(CObserve)
	m_nObserve = -1;
	//}}AFX_DATA_INIT
}


void CObserve::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CObserve)
	DDX_Radio(pDX, IDC_RADIO1, m_nObserve);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CObserve, CDialog)
	//{{AFX_MSG_MAP(CObserve)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CObserve message handlers

BOOL CObserve::OnInitDialog() 
{
	CDialog::OnInitDialog();
	
	// TODO: Add extra initialization here
	m_nObserve=0;
	UpdateData(FALSE);
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

⌨️ 快捷键说明

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