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.
44 lines
967 B
C++
44 lines
967 B
C++
|
|
// TestDrawerDllDlg.h: 头文件
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
// CTestDrawerDllDlg 对话框
|
|
class CTestDrawerDllDlg : public CDialogEx
|
|
{
|
|
// 构造
|
|
public:
|
|
CTestDrawerDllDlg(CWnd* pParent = nullptr); // 标准构造函数
|
|
|
|
// 对话框数据
|
|
#ifdef AFX_DESIGN_TIME
|
|
enum { IDD = IDD_TESTDRAWERDLL_DIALOG };
|
|
#endif
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
|
|
|
|
// 实现
|
|
protected:
|
|
HICON m_hIcon;
|
|
|
|
// 生成的消息映射函数
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
|
|
afx_msg void OnPaint();
|
|
afx_msg HCURSOR OnQueryDragIcon();
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
/// 执行动态库测试
|
|
afx_msg void OnBnClickedButtonExcuteTest();
|
|
// 测试是否能打开文件
|
|
afx_msg void OnBnClickedButtonTestOpenfile();
|
|
afx_msg void OnBnClickedButtonTestLicense();
|
|
afx_msg void OnBnClickedButtonTest3d();
|
|
afx_msg void OnBnClickedButtonTestGrid();
|
|
afx_msg void OnBnClickedButtonTestOutline();
|
|
};
|