]> git.saurik.com Git - wxWidgets.git/commitdiff
Add a wxStaticText to the erase simple.
authorVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Mar 2011 11:35:37 +0000 (11:35 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Thu, 17 Mar 2011 11:35:37 +0000 (11:35 +0000)
This control explains better what is going on in the sample and also allows to
test whether wxStaticText itself has properly transparent background (this is
not currently the case under MSW).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67224 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/erase/erase.cpp

index d603a93cefca80e56db8a84ff4d2a4756e36a5f3..99de17e1bab9175ddbdde5b2858f792750cdfb8e 100644 (file)
@@ -257,8 +257,13 @@ MyCanvas::MyCanvas(wxFrame *parent)
 
     new wxStaticBitmap( this, wxID_ANY, m_bitmap, wxPoint(80,20) );
 
+    new wxStaticText(this, wxID_ANY,
+                     "Left bitmap is a wxStaticBitmap,\n"
+                     "right one drawn directly",
+                     wxPoint(150, 20));
+
     SetFocusIgnoringChildren();
-    SetBackgroundColour(*wxBLUE);
+    SetBackgroundColour(*wxCYAN);
 }
 
 void MyCanvas::OnChar( wxKeyEvent &event )