| SourceCode/Bond/BondEq/BondEq.rc | 补丁 | 查看 | 原始文档 | blame | 历史 | |
| SourceCode/Bond/BondEq/BondEq.vcxproj | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
| SourceCode/Bond/BondEq/BondEqDlg.cpp | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
| SourceCode/Bond/BondEq/Resource.h | 补丁 | 查看 | 原始文档 | blame | 历史 | |
| SourceCode/Bond/BondEq/View/RecipeLiseDlg.cpp | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 | |
| SourceCode/Bond/BondEq/View/RecipeLiseDlg.h | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
SourceCode/Bond/BondEq/BondEq.rcBinary files differ
SourceCode/Bond/BondEq/BondEq.vcxproj
@@ -263,6 +263,7 @@ <ClInclude Include="View\ChangePasswordDlg.h" /> <ClInclude Include="View\IOMonitoringDlg.h" /> <ClInclude Include="View\LoginDlg.h" /> <ClInclude Include="View\RecipeLiseDlg.h" /> <ClInclude Include="View\SystemLogManagerDlg.h" /> <ClInclude Include="View\UserManagerDlg.h" /> </ItemGroup> @@ -343,6 +344,7 @@ <ClCompile Include="View\ChangePasswordDlg.cpp" /> <ClCompile Include="View\IOMonitoringDlg.cpp" /> <ClCompile Include="View\LoginDlg.cpp" /> <ClCompile Include="View\RecipeLiseDlg.cpp" /> <ClCompile Include="View\SystemLogManagerDlg.cpp" /> <ClCompile Include="View\UserManagerDlg.cpp" /> </ItemGroup> SourceCode/Bond/BondEq/BondEqDlg.cpp
@@ -16,6 +16,8 @@ #include "UserManagerDlg.h" #include "SystemLogManagerDlg.h" // æµè¯ #include "RecipeLiseDlg.h" #ifdef _DEBUG #define new DEBUG_NEW @@ -538,8 +540,12 @@ void CBondEqDlg::OnMenuFileSettings() { CSettingsDlg dlg; CRecipeLiseDlg dlg; dlg.DoModal(); //CSettingsDlg dlg; //dlg.DoModal(); } void CBondEqDlg::OnUpdateMenuFileSettings(CCmdUI* pCmdUI) SourceCode/Bond/BondEq/Resource.hBinary files differ
SourceCode/Bond/BondEq/View/RecipeLiseDlg.cpp
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,35 @@ // RecipeLiseDlg.cpp: å®ç°æä»¶ // #include "stdafx.h" #include "BondEq.h" #include "afxdialogex.h" #include "RecipeLiseDlg.h" // CRecipeLiseDlg å¯¹è¯æ¡ IMPLEMENT_DYNAMIC(CRecipeLiseDlg, CDialogEx) CRecipeLiseDlg::CRecipeLiseDlg(CWnd* pParent /*=nullptr*/) : CDialogEx(IDD_DIALOG_RECIPE_LIST, pParent) { } CRecipeLiseDlg::~CRecipeLiseDlg() { } void CRecipeLiseDlg::DoDataExchange(CDataExchange* pDX) { CDialogEx::DoDataExchange(pDX); DDX_Control(pDX, IDC_CUSTOM_RECIPE_LIST, m_grid); } BEGIN_MESSAGE_MAP(CRecipeLiseDlg, CDialogEx) END_MESSAGE_MAP() // CRecipeLiseDlg æ¶æ¯å¤çç¨åº SourceCode/Bond/BondEq/View/RecipeLiseDlg.h
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,28 @@ #pragma once #include "afxdialogex.h" #include "GridCtrl.h" // CRecipeLiseDlg å¯¹è¯æ¡ class CRecipeLiseDlg : public CDialogEx { DECLARE_DYNAMIC(CRecipeLiseDlg) public: CRecipeLiseDlg(CWnd* pParent = nullptr); // æ åæé 彿° virtual ~CRecipeLiseDlg(); // å¯¹è¯æ¡æ°æ® #ifdef AFX_DESIGN_TIME enum { IDD = IDD_DIALOG_RECIPE_LIST }; #endif private: CGridCtrl m_grid; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV æ¯æ DECLARE_MESSAGE_MAP() };