From f71f467b68ce6c8dc6c983a2963ec9b131515441 Mon Sep 17 00:00:00 2001
From: chenluhua1980 <Chenluhua@qq.com>
Date: 星期三, 10 十二月 2025 17:55:02 +0800
Subject: [PATCH] 1.实现删除变量的功能;
---
SourceCode/Bond/Servo/CUserEdit2Dlg.h | 23 +++++++++++++++++++++++
1 files changed, 23 insertions(+), 0 deletions(-)
diff --git a/SourceCode/Bond/Servo/CUserEdit2Dlg.h b/SourceCode/Bond/Servo/CUserEdit2Dlg.h
new file mode 100644
index 0000000..e61e745
--- /dev/null
+++ b/SourceCode/Bond/Servo/CUserEdit2Dlg.h
@@ -0,0 +1,23 @@
+#pragma once
+
+class CUserEdit2Dlg : public CDialogEx
+{
+ DECLARE_DYNAMIC(CUserEdit2Dlg)
+
+public:
+ CUserEdit2Dlg(bool editMode = false, CWnd* pParent = nullptr);
+ virtual ~CUserEdit2Dlg();
+
+ CString m_strUsername;
+ CString m_strDisplayName;
+ CString m_strPassword;
+ CString m_strRole;
+ BOOL m_bEnabled = TRUE;
+ bool m_bEditMode = false;
+
+protected:
+ virtual void DoDataExchange(CDataExchange* pDX);
+ virtual BOOL OnInitDialog();
+ afx_msg void OnOK();
+ DECLARE_MESSAGE_MAP()
+};
--
Gitblit v1.9.3