Skip to content Skip to sidebar Skip to footer

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 functio

Solution 1:

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

Post a Comment for "Make Tkinter Notebook Be Draggable To Another View"