-void wxTextCtrl::OnEraseBackground(wxEraseEvent& event)
-{
- if ( m_windowStyle & wxTE_MULTILINE )
- {
- // No flicker - only problem is we probably can't change the background
- Default();
-/*
- RECT rect;
- ::GetClientRect((HWND) GetHWND(), &rect);
-
- HBRUSH hBrush = ::CreateSolidBrush(PALETTERGB(GetBackgroundColour().Red(), GetBackgroundColour().Green(), GetBackgroundColour().Blue()));
- int mode = ::SetMapMode((HDC) event.GetDC()->GetHDC(), MM_TEXT);
-
- ::FillRect ((HDC) event.GetDC()->GetHDC(), &rect, hBrush);
- ::DeleteObject(hBrush);
- ::SetMapMode((HDC) event.GetDC()->GetHDC(), mode);
-*/
- }
-// wxWindow::OnEraseBackground(event);
-}
-