有没有办法在使用Tkinter的gui上显示(xlsx文件)工作表? 它可以是任何格式。
def display():
filepath="D:\old\fresh.xlsx"
os.system(filepath)
w = Label(top, text=time.strftime("%c"))
k=Tkinter.Button(top,text="See all result on Ms excel",command= helloCallBack)
B=Tkinter.Button(top,text="Enter to get new data",command= helloCallBack)
load=Image.open("498064609.jpg")
background_image=ImageTk.PhotoImage(load)
background_label = Label(top, image=background_image)
k.pack()
B.grid(row=2,column=6)
B.pack()
w.pack()
当我按下按钮时,这会导致(没有响应)('查看excel女士的所有结果')
答案 0 :(得分:-1)
使用Tktable和python3
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()