Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Non-editable text box in wxPython

How to create a non-editable text box with no cursor in wxPython to dump text in?

like image 679
Alex Avatar asked Aug 10 '09 13:08

Alex


1 Answers

wx.StaticText

You could also use a regular TextCtrl with the style TE_READONLY but that shows a cursor and the text looks editable, but it isn't.

like image 109
tom10 Avatar answered Sep 24 '22 17:09

tom10