HOWTO: Provide Your Own Window Class Name for an MFC Dialog Box「建议收藏」

HOWTO: Provide Your Own Window Class Name for an MFC Dialog Box「建议收藏」From:http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q251

HOWTO: Provide Your Own Window Class Name for an MFC Dialog Box「建议收藏」

From:http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q251/0/59.ASP&NoWebContent=1

This article was previously published under Q251059
Note Microsoft Visual C++ .NET (2002) supports both the managed code model that is provided by the Microsoft .NET Framework and the unmanaged native Microsoft Windows code model. The information in this article applies only to unmanaged Visual C++ code.
SUMMARY
This article shows you how to provide your own Window Class Name for a dialog box that is created in an MFC-based application.

You may encounter this need when you try to limit your dialog-based MFC application to a single instance.
MORE INFORMATION
To provide your own Window Class Name, follow these steps:
Open your project work space that contains the dialog box, and then click ResourceView.
Open the dialog box in Resource Editor. Right-click the dialog box, and then select Properties. Notice an entry for Class Name at the bottom right. This edit box appears disabled if you are using a resource file with Microsoft Foundation Class Library support. To enable this option, switch to the top-level node on the resource view, and then right-click and select Properties. Clear the Enable MFC Features check box. Or for Visual C++ .NET, clear the MFC Mode property to FALSE. Now display the properties for your dialog box. The Class Name edit box should be enabled. Type the class name; for instance MyPrivateClassName.
Alternatively, open the .rc file as a text file. Go to the desired DIALOG resource and add the CLASS option.

IDD_LIMITDLGINSTANCE_DIALOG DIALOGEX 0, 0, 195, 44
STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
EXSTYLE WS_EX_APPWINDOW
CAPTION “LimitDlgInstance”
CLASS “MyPrivateClassName” // Add your class name here!
FONT 8, “MS Sans Serif”
BEGIN
    DEFPUSHBUTTON   “OK”,IDOK,138,7,50,14
    PUSHBUTTON      “Cancel”,IDCANCEL,138,23,50,14
    PUSHBUTTON      “&Test!”,IDC_BUTTON1,48,14,49,15
END
      
Add the following code in the InitInstance() function of the CWinApp-derived class.

BOOL CLimitDlgInstanceApp::InitInstance()
{

 /
 /
 WNDCLASS wc;

 // Get the info for this class.
         // #32770 is the default class name for dialogs boxes.
 ::GetClassInfo(AfxGetInstanceHandle(), “#32770”, &wc);

 // Change the name of the class.
 wc.lpszClassName = “MyPrivateClassName”;

 // Register this class so that MFC can use it.
 AfxRegisterClass(&wc); 
 /
 /

// …
}
      
In the step above, in the call to ::GetClassInfo(), make sure to use the correct HINSTANCE call if your dialog resource is located in a separate DLL.
Build and run your application. Use the Spy++ tool to verify that the dialog now uses the new class name.

今天的文章HOWTO: Provide Your Own Window Class Name for an MFC Dialog Box「建议收藏」分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/81481.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注