mirror of
https://github.com/yuanyuanxiang/SimpleRemoter.git
synced 2026-01-21 23:13:08 +08:00
29 lines
513 B
C++
29 lines
513 B
C++
#pragma once
|
|
#include "afxdialogex.h"
|
|
|
|
|
|
// CUpdateDlg 对话框
|
|
|
|
class CUpdateDlg : public CDialogEx
|
|
{
|
|
DECLARE_DYNAMIC(CUpdateDlg)
|
|
|
|
public:
|
|
CUpdateDlg(CWnd* pParent = nullptr); // 标准构造函数
|
|
virtual ~CUpdateDlg();
|
|
|
|
// 对话框数据
|
|
#ifdef AFX_DESIGN_TIME
|
|
enum { IDD = IDD_DIALOG_UPDATE };
|
|
#endif
|
|
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
public:
|
|
CComboBox m_ComboUpdateSelect;
|
|
virtual BOOL OnInitDialog();
|
|
int m_nSelected;
|
|
};
|