LAPTOP-SNT8I5JK\Boounion
2025-01-13 c6bfb4fc0801c4cb1f9dd2128df5f20d2e9cf27d
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
// SecsTestDlg.cpp : ÊµÏÖÎļþ
//
 
#include "stdafx.h"
#include "Servo.h"
#include "SecsTestDlg.h"
#include "afxdialogex.h"
 
 
// CSecsTestDlg ¶Ô»°¿ò
 
IMPLEMENT_DYNAMIC(CSecsTestDlg, CDialogEx)
 
CSecsTestDlg::CSecsTestDlg(CWnd* pParent /*=NULL*/)
    : CDialogEx(IDD_DIALOG_SECS_TEST, pParent)
{
 
}
 
CSecsTestDlg::~CSecsTestDlg()
{
}
 
void CSecsTestDlg::DoDataExchange(CDataExchange* pDX)
{
    CDialogEx::DoDataExchange(pDX);
}
 
 
BEGIN_MESSAGE_MAP(CSecsTestDlg, CDialogEx)
    ON_BN_CLICKED(IDC_BUTTON_S1F13, &CSecsTestDlg::OnBnClickedButtonS1f13)
    ON_BN_CLICKED(IDC_BUTTON_S1F1, &CSecsTestDlg::OnBnClickedButtonS1f1)
END_MESSAGE_MAP()
 
 
// CSecsTestDlg ÏûÏ¢´¦Àí³ÌÐò
 
void CSecsTestDlg::OnBnClickedButtonS1f1()
{
    theApp.m_model.m_hsmsPassive.requestAreYouThere();
}
 
void CSecsTestDlg::OnBnClickedButtonS1f13()
{
 
}