- bool want3D;
- WXDWORD exStyle = Determine3DEffects(0, &want3D) ;
-
- HWND wx_button =
- CreateWindowEx(exStyle, "BUTTON", (const char *)label, msStyle,
- 0, 0, 0, 0, (HWND) parent->GetHWND(), (HMENU)m_windowId,
- wxGetInstance(), NULL);
-#if CTL3D
- if (want3D)
- {
- Ctl3dSubclassCtl(wx_button);
- m_useCtl3D = TRUE;
- }
-#endif
-
- m_hWnd = (WXHWND)wx_button;
-
- // Subclass again for purposes of dialog editing mode
- SubclassWin(GetHWND());
-
- SetFont(* parent->GetFont());
-
- SetSize(x, y, width, height);
- ShowWindow(wx_button, SW_SHOW);
-
- return TRUE;