Under WinCE, we need to send the groupbox z position to the bottom

to reveal the controls that were created after the group control.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28523 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2004-07-27 20:30:22 +00:00
parent d9ab621ea2
commit 64133c38ea

View File

@@ -345,6 +345,13 @@ bool wxRadioBox::Create(wxWindow *parent,
0, 0, 0, 0, hwndParent,
(HMENU)NewControlId(), wxGetInstance(), NULL);
#ifdef __WXWINCE__
// Set the z-order correctly
RECT rect;
GetWindowRect(GetHwnd(), & rect);
SetWindowPos(GetHwnd(), HWND_BOTTOM, rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top, 0);
#endif
SetSelection(0);
SetSize(pos.x, pos.y, size.x, size.y);