Zimm3r
Zimm3r

Reputation: 3425

wxPython notebook have tabs be center top?

How can I have the wxPython notebooks tabs be center on the top?

EXTRA TEXT TO MAKE IT LOOK LONGER EVER THOUGH IT IS A SIMPLE QUESTION.

Upvotes: 0

Views: 115

Answers (1)

Mike Driscoll
Mike Driscoll

Reputation: 33071

Notebook tabs always start off in the top left for the native widget. The only thing you can change is which side the tabs appear on (i.e. top, left, bottom or right). You cannot control where on the side they appear.

You might be able to take FlatNotebook and hack it a bit to add this functionality since it is written in pure Python versus wx.Notebook which is wrapped C++.

Upvotes: 1

Related Questions