0

I cant seem to figure out where I would start to make something like this:

System32 Small Icon View

I just want to have something to select pairs of text and icons like in windows explorer with "Small Icons" selected.

from tkinter import *
from tkinter import ttk

title = "Select Sheets Items"

dlg = Tk()
Donal Fellows
  • 133,037
  • 18
  • 149
  • 215
teddyog
  • 13
  • 2
  • That's an iconlist "megawidget" (widget made out of other widgets) and isn't in the public API because it isn't finished; there's just enough there to implement the file chooser dialogs on Linux. – Donal Fellows Jun 22 '23 at 16:11

1 Answers1

0

TkTreeCtrl - https://tktreectrl.sourceforge.net/ - can do stuff like this, e.g. https://tktreectrl.sourceforge.net/pics/explorer4.png . It does take some study to get into, but it's seriously powerful.

I've only used it from Tcl, but it appears you could use it from Python via https://tkintertreectrl.sourceforge.net/ .

Colin Macleod
  • 4,222
  • 18
  • 21