Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Adding a Panel to MFC application (Visual Studio C++)

I am really sorry if this is a dumb question - I am new in Visual Studio and can't find an answer to this. Probably because it should be really obvious, but just can't see what I'm doing wrong.

I am using Visual Studio 2012, creating a dialog-based MFC application. I would like to draw on a panel, but when I try to add a panel to my dialog - there just is no panel! What am I missing?

enter image description here

like image 798
neuromouse Avatar asked Apr 23 '14 18:04

neuromouse


1 Answers

MFC has no concept of panels. The only suggestions I can offer are either to write a custom control or look for a third party MFC controls library which offers what you need.

If you're just trying to separate content, perhaps a group box with no title would do?

like image 104
Ferruccio Avatar answered Sep 22 '22 15:09

Ferruccio