+void
+wxRendererMSW::DrawComboBoxDropButton(wxWindow * WXUNUSED(win),
+ wxDC& dc,
+ const wxRect& rect,
+ int flags)
+{
+ RECT r;
+ r.left = rect.GetLeft();
+ r.top = rect.GetTop();
+ r.bottom = rect.GetBottom();
+ r.right = rect.GetRight();
+
+ int style = DFCS_SCROLLCOMBOBOX;
+ if ( flags & wxCONTROL_DISABLED )
+ style |= DFCS_INACTIVE;
+ if ( flags & wxCONTROL_PRESSED )
+ style |= DFCS_PUSHED;
+
+ ::DrawFrameControl(GetHdcOf(dc), &r, DFC_SCROLL, style);
+}
+