+ return 0;
+}
+
+WXHBRUSH wxControl::MSWControlColor(WXHDC pDC)
+{
+ WXHBRUSH hbr = MSWControlColorSolid(pDC, m_hasBgCol ? m_backgroundColour
+ : wxNullColour);
+ if ( hbr )
+ return hbr;
+
+ ::SetBkMode((HDC)pDC, TRANSPARENT);
+
+ hbr = MSWGetBgBrush(pDC);
+
+ return hbr ? hbr : MSWGetDefaultBgBrush();
+}
+
+WXHBRUSH wxControl::MSWControlColorDisabled(WXHDC pDC)
+{
+ return MSWControlColorSolid
+ (
+ pDC,
+ wxSystemSettings::GetColour(wxSYS_COLOUR_BTNFACE)
+ );