#第一個表格 self.table_frame = tk.Frame(self.result_text) self.table_frame.pack(side=tk.LEFT, fill=tk.BOTH, expand=True) table_scroll_y = ttk.Scrollbar(self.table_frame, orient=tk.VERTICAL) table_scroll_y.pack(side=tk.RIGHT, fill=tk.Y) table_scroll_x = ttk.Scrollbar(self.table_frame, orient=tk.HORIZONTAL) table_scroll_x.pack(side=tk.BOTTOM, fill=tk.X) # 创建表格 self.columns = ("69料號", "工單", "領板數量", "待測數量", "待裁數量", "待送修數量", "實際數量", "差異", "盤點人", "確認者") self.tree = ttk.Treeview(self.table_frame, show="headings", columns=self.columns, yscrollcommand=table_scroll_y.set, xscrollcommand=table_scroll_x.set) table_scroll_y.config(command=self.tree.yview) table_scroll_x.config(command=self.tree.xview) for col in self.columns: self.tree.heading(col, text=col) self.tree.grid(row=0, column=2, rowspan=5)
时间: 2024-03-29 17:40:36 浏览: 144
GameServer.zip_Apple pie server__libmySQL.dll_self_苹果派_苹果派服务端
这段代码是用来创建一个表格的,其中用到了tkinter和ttk模块。表格中包含了多列数据,分别是“69料號”、“工單”、“領板數量”、“待測數量”、“待裁數量”、“待送修數量”、“實際數量”、“差異”、“盤點人”和“確認者”。表格中还包含了纵向和横向的滚动条,方便用户查看表格中的数据。最后使用for循环将表格中的每一列数据的列名设置为对应的文本。
阅读全文