LAPTOP-SNT8I5JK\Boounion
2025-09-19 3896bd8be7e7db15e5e1b9f3c07469ad614c8a74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// CPjPage1.cpp: 实现文件
//
 
#include "stdafx.h"
#include "Servo.h"
#include "CCjPage3.h"
#include "afxdialogex.h"
 
 
// CPjPage1 对话框
 
IMPLEMENT_DYNAMIC(CCjPage3, CCjPageBase)
 
CCjPage3::CCjPage3(CWnd* pParent /*=nullptr*/)
    : CCjPageBase(IDD_CJ_PAGE3, pParent)
{
 
}
 
CCjPage3::~CCjPage3()
{
}
 
void CCjPage3::DoDataExchange(CDataExchange* pDX)
{
    CCjPageBase::DoDataExchange(pDX);
}
 
 
BEGIN_MESSAGE_MAP(CCjPage3, CCjPageBase)
    ON_WM_DESTROY()
END_MESSAGE_MAP()
 
 
// CPjPage1 消息处理程序
 
 
BOOL CCjPage3::OnInitDialog()
{
    CCjPageBase::OnInitDialog();
 
 
    return TRUE;  // return TRUE unless you set the focus to a control
                  // 异常: OCX 属性页应返回 FALSE
}
 
void CCjPage3::OnDestroy()
{
    CCjPageBase::OnDestroy();
 
    // TODO: 在此处添加消息处理程序代码
}
 
void CCjPage3::Resize()
{
    CCjPageBase::Resize();
 
    /*
    CWnd* pItem;
    CRect rcClient, rcItem;
    GetClientRect(&rcClient);
    pItem = GetDlgItem(IDC_LABEL_NO_SEL);
    pItem->GetWindowRect(&rcItem);
    pItem->MoveWindow((rcClient.Width() - rcItem.Width()) / 2,
        (rcClient.Height() - rcItem.Height()) / 2,
        rcItem.Width(), rcItem.Height());
        */
}
 
int CCjPage3::OnApply()
{
    return 0;
}