Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to do a wx.TextCtrl with no border?

I want to do a wx.TextCtrl with no border usign wxpython :P How can I do it?

like image 969
aF. Avatar asked Dec 07 '22 03:12

aF.


1 Answers

How about wx.BORDER_NONE as in:

t1 = wx.TextCtrl(self, -1, "my text", style=wx.BORDER_NONE)
like image 133
tom10 Avatar answered Dec 09 '22 16:12

tom10