Improve: Add client update logic for client type EXE

This commit is contained in:
yuanyuanxiang
2026-01-20 22:03:34 +01:00
parent 51c0658e18
commit 2fb77d512b
14 changed files with 242 additions and 11 deletions

View File

@@ -0,0 +1,28 @@
#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;
};