tkinter-pp icon indicating copy to clipboard operation
tkinter-pp copied to clipboard

A collection of tkinter made widgets

Results 10 tkinter-pp issues
Sort by recently updated
recently updated
newest added

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 = []...

enhancement

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...

enhancement
good first issue

Change FileEntry to use a combobox instead, and have its values be the latest selected files.

enhancement
good first issue

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...

enhancement

A Frame dedicated to forms, with support for tk.Entry, ttk.Combobox, tk.Checkbutton, tk.Radiobutton or a Form geometry manager.

enhancement

A treeview dedicated to displaying tables.

enhancement

A simple toolbar to display buttons, or entries Probably more of a geometry manager than anything else.

enhancement

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:...