How should a scrollable spreadsheet be displayed within Tkinter?
问题 Currently I am using a Treeview. The problem is that I am using quite a large data set. So that the GUI isn't massive, I've limited the size of the Treeview to fit the window and added vertical and horizontal scrollbars. It displays the data exactly how I want, however there are speed issues when scrolling in each direction. Is there a better/faster way to display spreadsheet-like data. 回答1: The below solution is cobbled together but should achieve the desired result: from tkinter import *