views:

3116

answers:

6

How do you change controls' Z-order in MFC at design time - i.e. I can't use SetWindowPos or do this at runtime - I want to see the changed z-order in the designer (even if I have to resort to direct-editing the .rc code).

I have an MFC dialog to which I am adding controls. If there is overlap between the edges of the controls, I want to bring one to the front of the other. In Windows Forms or WPF, etc. I can Bring to Front, Send to Back, Bring Forward, Send Back. I don't find these options in MFC, nor can I tell how it determines what is in front, as a control just added is often behind a control that was there previously. How can I manipulate the Z-order in MFC? Even if I have to manipulate the .rc file code directly (i.e. end-run around the designer).

+3  A: 
GetDlgItem(IDC_MYCONTROL)->SetWindowPos(HWND_TOP,
                                        0, 0, 0, 0,
                                        SWP_NOMOVE | SWP_NOSIZE);
Adam Pierce
A: 

You can use CWnd::SetWindowPos() to control the Z order of your controls, without changing their position in the parent window.

Franci Penov
+1  A: 

Actually, if you want to do this in the resource editor, you can just cut the item and then paste it back as a quick and dirty solution. Just Ctrl-X then Ctrl-V.

Editing the RC file will also work.

Adam Pierce
+3  A: 

I think the control in front will be the last control that occurs in the rc file. In other words, the dialog editor will draw each control as it is encountered from top to bottom in the rc file, overlapping them when necessary.

You can edit the rc file to reorder them, or you can change the tab order in the editor, which does the same thing since tab order is also set based on the order that the controls occur in the file. To my knowledge MFC doesn't offer any other way of layering overlapping controls at design time.

ryan_s
A: 

In the MSVC 2005 dialog resource editor there is an option to set the tab order. In MSVC 2005 it is found on the Format, Tab Order menu.

The tab order displayed by this menu option is the same order in which the controls are written to the resource file.

jussij
+4  A: 

In Visual Studio 6.0 do the following.

Open the dialog screen (in designer view)

Press Ctrl + D

The tab orders will be shown for each control

Start clicking controls in the tab order you expect to see in run-time (ie., the control on which you click first will have tab order set to 1 and so on...)

U Senthil Kumar