Reputation: 2618
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
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