System.Windows.Controls.Expander MFC equivalent
Does anybody know an MFC equivalent of开发者_如何学JAVA the WPF System.Windows.Controls.Expander?
There is no direct correlation. One option is to inherit CGroupBox
and roll it up when the header is clicked. The more difficult aspect of mimicing WPF-style GUI is the layout engine. If you want any kind of fluid layout in MFC you'll have to use a 3rd-party library (example) or roll your own.
精彩评论