make the text in the top area more readable

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47806 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2007-07-29 01:25:40 +00:00
parent 6e69dd00cc
commit 4849eced7f

View File

@ -162,6 +162,11 @@ protected:
{
wxPaintDC dc(this);
dc.SetTextForeground(*wxWHITE);
wxFont font(*wxSWISS_FONT);
font.SetWeight(wxFONTWEIGHT_BOLD);
font.SetPointSize(font.GetPointSize() + 2);
dc.SetFont(font);
dc.DrawLabel(_T("Press keys here"), GetClientRect(), wxALIGN_CENTER);
}