MFC – 属性表

MFC – 属性表


一个属性表,也被称为标签对话框中,是包含属性页的对话框。每个属性页都基于一个对话框模板资源并包含控件。它附在一个页面上,顶部有一个选项卡。该选项卡命名页面并指明其用途。用户单击属性表中的选项卡以选择一组控件。

要创建属性页,让我们通过创建一个基于对话框的 MFC 项目来查看一个简单的示例。

MFC项目

创建项目后,我们需要添加一些属性页。

通过显示“添加资源”对话框、展开“对话框”节点并选择 IDD_PROPPAGE_X 项之一,Visual Studio 可以轻松地为属性页创建资源。

步骤 1 – 在解决方案资源管理器中右键单击您的项目,然后选择添加 → 资源。

IDD 传播大号

步骤 2 – 选择 IDD_PROPPAGE_LARGE 并单击新建。

IDD 传播 大 新

第 3 步– 让我们将此属性页的 ID 和标题分别更改为IDD_PROPPAGE_1属性页 1,如上所示。

步骤 4 – 右键单击​​设计器窗口中的属性页。

设计器窗口中的属性

步骤 5 – 选择添加类选项。

属性添加类选项

步骤 6 – 输入类名并从基类下拉列表中选择 CPropertyPage。

步骤 7 – 单击完成继续。

步骤 8 – 按照上述步骤添加一个带有 ID IDD_PROPPAGE_2 和标题属性页面 2 的属性页面。

步骤 9 – 您现在可以看到创建的两个属性页面。为了实现它的功能,我们需要一个属性表。

属性表将属性页组合在一起并将其保留为实体。

要创建属性表,请按照以下步骤操作 –

步骤 1 – 右键单击​​您的项目并选择添加 > 类菜单选项。

创建属性表

步骤 2 – 从左窗格中选择 Visual C++ → MFC,在模板窗格中选择 MFC 类,然后单击添加。

模板窗格中的 MFC 类

步骤 3 – 输入类名并从基类下拉列表中选择 CPropertySheet。

步骤 4 – 单击完成继续。

第 5 步– 要启动此属性表,我们需要在主项目类中进行以下更改。

步骤 6 – 在 CMFCPropSheetDemo.cpp 文件中添加以下引用。

#include "MySheet.h"
#include "PropPage1.h"
#include "PropPage2.h"

步骤 7 – 修改 CMFCPropSheetDemoApp::InitInstance() 方法,如下面的代码所示。

CMySheet mySheet(L"Property Sheet Demo");
CPropPage1 page1;
CPropPage2 page2;

mySheet.AddPage(&page1);
mySheet.AddPage(&page2);

m_pMainWnd = &mySheet;
INT_PTR nResponse = mySheet.DoModal();

步骤 8 – 这是 CMFCPropSheetDemo.cpp 文件的完整实现。

// MFCPropSheetDemo.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "MFCPropSheetDemo.h"
#include "MFCPropSheetDemoDlg.h"
#include "MySheet.h"
#include "PropPage1.h"
#include "PropPage2.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CMFCPropSheetDemoApp
BEGIN_MESSAGE_MAP(CMFCPropSheetDemoApp, CWinApp)
   ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()


// CMFCPropSheetDemoApp construction

CMFCPropSheetDemoApp::CMFCPropSheetDemoApp() {

   // support Restart Manager
   m_dwRestartManagerSupportFlags = AFX_RESTART_MANAGER_SUPPORT_RESTART;
   // TODO: add construction code here,
   // Place all significant initialization in InitInstance
}


// The one and only CMFCPropSheetDemoApp object

CMFCPropSheetDemoApp theApp;


// CMFCPropSheetDemoApp initialization

BOOL CMFCPropSheetDemoApp::InitInstance() {
   
   // InitCommonControlsEx() is required on Windows XP if an application
   // manifest specifies use of ComCtl32.dll version 6 or later to enable
   // visual styles. Otherwise, any window creation will fail.
   INITCOMMONCONTROLSEX InitCtrls;
   InitCtrls.dwSize = sizeof(InitCtrls);
   // Set this to include all the common control classes you want to use
   // in your application.
   InitCtrls.dwICC = ICC_WIN95_CLASSES;
   InitCommonControlsEx(&InitCtrls);
   
   CWinApp::InitInstance();
   
   
   AfxEnableControlContainer();
   
   // Create the shell manager, in case the dialog contains
   // any shell tree view or shell list view controls.
   CShellManager *pShellManager = new CShellManager;

   // Activate "Windows Native" visual manager for enabling themes in MFC controls
   CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
   // Standard initialization
   // If you are not using these features and wish to reduce the size
   // of your final executable, you should remove from the following
   // the specific initialization routines you do not need
   // Change the registry key under which our settings are stored
   // TODO: You should modify this string to be something appropriate
   // such as the name of your company or organization
   SetRegistryKey(_T("Local AppWizard-Generated Applications"));
   
   CMySheet mySheet(L"Property Sheet Demo");
   CPropPage1 page1;
   CPropPage2 page2;
   
   mySheet.AddPage(&page1);
   mySheet.AddPage(&page2);
   
   m_pMainWnd = &mySheet;
   INT_PTR nResponse = mySheet.DoModal();
   if (nResponse == IDOK) {
      // TODO: Place code here to handle when the dialog is
      // dismissed with OK
   }else if (nResponse == IDCANCEL) {
      // TODO: Place code here to handle when the dialog is
      // dismissed with Cancel
   }else if (nResponse == -1) {    
      TRACE(traceAppMsg, 0, "Warning: dialog creation failed, 
        so application is terminating unexpectedly.\n");
      TRACE(traceAppMsg, 0, "Warning: if you are using MFC controls on the dialog, 
        you cannot #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS.\n");
   }

   // Delete the shell manager created above.
   if (pShellManager != NULL) {
      delete pShellManager;
   }

   // Since the dialog has been closed, return FALSE so that we exit the
   // application, rather than start the application's message pump.
   return FALSE;
}

Step 9 – 编译并执行上述代码后,您将看到以下对话框。此对话框包含两个属性页。

属性页

觉得文章有用?

点个广告表达一下你的爱意吧 !😁