From 64133c38ea981c7414b3faff8d3f3d71663607da Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 27 Jul 2004 20:30:22 +0000 Subject: [PATCH] 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 --- src/msw/radiobox.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/msw/radiobox.cpp b/src/msw/radiobox.cpp index 73c40bd139..53b5d44715 100644 --- a/src/msw/radiobox.cpp +++ b/src/msw/radiobox.cpp @@ -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); -- 2.45.2