创建 excel 样式的文本条目

Creating a text entry in excel style

是否可以像 excel 那样在 window 中设置 table?

我想从数据库 table 导入值并将它们存储到 excel-like table 中。

编辑:table 中的单元格应该可以直接更改。

有一个名为 TkTable 的模块可以执行此操作。它将为您提供全面的 table 支持。

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()