aF.
aF.

Reputation: 66697

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?

Upvotes: 4

Views: 3528

Answers (1)

tom10
tom10

Reputation: 69182

How about wx.BORDER_NONE as in:

t1 = wx.TextCtrl(self, -1, "my text", style=wx.BORDER_NONE)

Upvotes: 17

Related Questions