Re: getting a DC with wx
- Posted by ghaberek (admin) Jun 08, 2009
- 844 views
wx_puts() is graphics-based, which means your text will be erased on the next wxEVT_PAINT event. You would have to store the text somewhere and repaint it again during that event. Why not just use set_status_text() instead?
-Greg