Reputation: 66697
I want to do a wx.TextCtrl with no border usign wxpython :P How can I do it?
Upvotes: 4
Views: 3528
Reputation: 69182
How about wx.BORDER_NONE as in:
wx.BORDER_NONE
t1 = wx.TextCtrl(self, -1, "my text", style=wx.BORDER_NONE)
Upvotes: 17