#include "wx/app.h"
#include "wx/stattext.h"
+#include "wx/dc.h"
+#include "wx/dcclient.h"
#include <stdio.h>
m_label = st ;
if ( !(GetWindowStyle() & wxST_NO_AUTORESIZE) )
SetSizeOrDefault() ;
-
- wxClientDC dc(this);
- OnDraw( dc ) ;
+
+ Refresh() ;
+ MacUpdateImmediately() ;
+// wxClientDC dc(this);
+// OnDraw( dc ) ;
}