// SetPage1.cpp : ʵÏÖÎļþ
|
//
|
|
#include "stdafx.h"
|
#include "BondServo.h"
|
#include "SetPage1.h"
|
#include "afxdialogex.h"
|
|
|
// CSetPage1 ¶Ô»°¿ò
|
|
IMPLEMENT_DYNAMIC(CSetPage1, CBaseSetPage)
|
|
CSetPage1::CSetPage1(CWnd* pParent /*=NULL*/)
|
: CBaseSetPage(IDD_SET_PAGE1, pParent)
|
{
|
|
}
|
|
CSetPage1::~CSetPage1()
|
{
|
}
|
|
void CSetPage1::DoDataExchange(CDataExchange* pDX)
|
{
|
CBaseSetPage::DoDataExchange(pDX);
|
}
|
|
|
BEGIN_MESSAGE_MAP(CSetPage1, CBaseSetPage)
|
END_MESSAGE_MAP()
|
|
|
// CSetPage1 ÏûÏ¢´¦Àí³ÌÐò
|
|
|
BOOL CSetPage1::OnInitDialog()
|
{
|
CBaseSetPage::OnInitDialog();
|
|
// TODO: ÔÚ´ËÌí¼Ó¶îÍâµÄ³õʼ»¯
|
|
return TRUE; // return TRUE unless you set the focus to a control
|
// Òì³£: OCX ÊôÐÔÒ³Ó¦·µ»Ø FALSE
|
}
|