Henry Zhu
Henry Zhu

Reputation: 2618

Make Tkinter Notebook be Draggable to Another View

I was wondering if there is any property or method I could set to make Tkinter Notebook tabs draggable as another window, like Sublime Text. If not, I think I could write a function when the tab is dragged, but I don't know how to bind it.

Upvotes: 2

Views: 369

Answers (1)

Adam Fowles
Adam Fowles

Reputation: 156

I don't know of any native properties for the ttk.Notebook widget but you could try Tkdnd.

There is some discussion of it here: How to Install and Use TkDnD with Python 2.7 Tkinter on OSX? Which also links to: python drag and drop explorer files to tkinter entry widget

Upvotes: 1

Related Questions