tkinter-pp
tkinter-pp copied to clipboard
A collection of tkinter made widgets
First, can you make it possible to bind the notebook tab close to a function? Second, can you put this on PyPi?
See this answer : https://stackoverflow.com/questions/54637795/how-to-make-a-tkinter-canvas-rectangle-transparent Using PIL (unfortunately, that will be a required dependancy) ```python from tkinter import * from PIL import Image, ImageTk root = Tk() images = []...
DirList : A Listbox that shows a directory's contents, including the ".." folder to move up in the hierarchy DirTree : A Treeview that shows a directory's contents, but in...
Change FileEntry to use a combobox instead, and have its values be the latest selected files.
A Canvas-based widget to show a node graph, with events to bind to when a node is created, deleted, moved. Nodes are simple rectangles with rounded corners, with a label...
A Frame dedicated to forms, with support for tk.Entry, ttk.Combobox, tk.Checkbutton, tk.Radiobutton or a Form geometry manager.
A simple toolbar to display buttons, or entries Probably more of a geometry manager than anything else.
I had developed three widgets namely EditableTreeview and DynamicNotebook for my personal project and now would like them to be accessible to the public, Some information on above widgets: 1....
I had developed three widgets namely EditableTreeview, DynamicNotebook, and NumberedText. Some information on above widgets: 1. EditableTreeview: Treeview widget with the ability to edit value in any cell. 2. DynamicNotebook:...