Which widget do you use for a Excel like table in tkinter?

前端 未结 2 1416
猫巷女王i
猫巷女王i 2021-02-03 10:38

I want a Excel like table widget in tkinter for a gui I am writing. Do you have any suggestions?

2条回答
  •  孤城傲影
    2021-02-03 10:55

    Tktable is at least arguably the best option, if you need full table support. Briefly, the following example shows how to use it assuming you have it installed. The example is for python3, but for python2 you only need to change the import statement.

    import tkinter as tk
    import tktable
    
    root = tk.Tk()
    table = tktable.Table(root, rows=10, cols=4)
    table.pack(side="top", fill="both", expand=True)
    root.mainloop()
    

    Tktable can be difficult to install since there is no pip-installable package.

    If all you really need is a grid of widgets for displaying and editing data, you can easily build a grid of entry or label widgets. For an example, see this answer to the question Python. GUI(input and output matrices)?

提交回复
热议问题