开发者

MFC: How to create options dialog with listbox and multiple pages?

开发者 https://www.devze.com 2023-03-06 20:16 出处:网络
Developing using Visual Studio 2010 C++ and MFC.I want to create an options (preferences/settings) dialog box that can display several options.After considering many different options dialog box UIs I

Developing using Visual Studio 2010 C++ and MFC. I want to create an options (preferences/settings) dialog box that can display several options. After considering many different options dialog box UIs I think I like the listbox-with-multiple-pages-style similar to visual studio's option dialog box (but I don't need the tr开发者_JAVA百科eeview, a list box is fine).

What's a good way to implement this? Do I use a CListBox and then handle the selection event to load up the individual pages? I'm new to MFC, what would the individual pages even be? Something like a panel? Ideally I would design them in the resource editor and then be able to load them up.


Take a look at http://www.codeproject.com/KB/dialog/embedded_dialog.aspx for one possible way of doing this.

The individual property pages can be designed as dialogs in the resource editor, and then the relevant page can be displayed in your main dialog depending on the selection in the list box, by handling the LVN_ITEMCHANGED message.


See CPropertySheet and CPropertyPage classes. This allows you to easily manage a properties window with several views.

0

精彩评论

暂无评论...
验证码 换一张
取 消