You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
564 B
C++

#pragma once
#include "CommonFlowMgr.h"
class CDlgLaserSpotPar : public CDialogEx
{
DECLARE_DYNAMIC(CDlgLaserSpotPar)
public:
CDlgLaserSpotPar(CWnd* pParent = NULL); // 标准构造函数
virtual ~CDlgLaserSpotPar();
// 对话框数据
enum { IDD = IDD_LASER_SPOT_PAR_DLG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
virtual BOOL OnInitDialog();
DECLARE_MESSAGE_MAP()
private:
CLaserSpotMarkPar m_LaserSpotMarkPar;//打光斑的参数
public:
afx_msg void OnBnClickedSavePar();
};