class ExcelApp: def init(self, master): self.master = master master.title("Excel App")# 创建工具栏 toolbar = tk.Frame(master, height=30) tk.Button(toolbar, text="打开", command=self.open_file).pack(side=tk.LEFT, padx=2, pady=2) tk.Button(toolbar, text="保存", command=self.save_file).pack(side=tk.LEFT, padx=2, pady=2) toolbar.pack(side=tk.TOP, fill=tk.X)# 创建文本框 text_frame = tk.Frame(self.panel_right) text_frame.pack(side=tk.TOP, fill=tk.BOTH, expand=True) self.textbox = tk.Text(text_frame) self.textbox.pack(side=tk.TOP, fill=tk.BOTH, expand=True)def show_sheet(self, sheet_name): self.textbox.tag_configure("left", justify="left") sheet = self.workbook[sheet_name] rows = sheet.max_row # 清空文本框 self.textbox.delete(1.0, tk.END) # 添加表名并设置居中标签 self.textbox.insert(tk.END, sheet_name + ":\n", "center") # 显示工作表内容,并在相应数据后面添加下拉输入框 for row in sheet.iter_rows(values_only=True): for i, cell in enumerate(row): line = str(cell) + "\t" if i == 0: # 在第一列数据后面添加下拉输入框 combobox = tk.ttk.Combobox(self.textbox, values=["下拉选项1", "下拉选项2", "下拉选项3"]) combobox.pack(side=tk.TOP, padx=10, pady=5) self.textbox.window_create(tk.END, window=combobox) self.textbox.insert(tk.END, line, "left") self.textbox.insert(tk.END, "\n") # 设置居中标签的样式 self.textbox.tag_configure("center", justify="center", font=("Arial", 14, "bold"))根據這個函數在寫一個函數,將這個函數生成文本框中的數據内容和下拉輸入框的内容按列寫入一個excel中,在寫入前要判斷文本框中是否存在内容和下拉輸入框是否有值,如果沒有就提醒
时间: 2023-11-14 11:04:58 浏览: 76
以COM对象方式显示或隐藏Excel的工具栏
您需要编写一个函数,它将从文本框和下拉框中获取数据,并将数据按列写入Excel文件中。以下是一个可能的实现:
```python
import openpyxl
def save_to_excel(self, filename):
# 检查是否有数据
if not self.textbox.get("1.0", "end").strip():
messagebox.showwarning("警告", "文本框中没有数据!")
return
# 检查是否有下拉框数据
for widget in self.textbox.winfo_children():
if isinstance(widget, tk.ttk.Combobox) and not widget.get().strip():
messagebox.showwarning("警告", "下拉框中没有数据!")
return
# 创建工作簿和工作表
workbook = openpyxl.Workbook()
sheet = workbook.active
# 从文本框和下拉框中获取数据,并按列写入Excel文件
rows = self.textbox.get("1.0", "end").split("\n")
for row_index, row in enumerate(rows):
if not row.strip():
continue
cells = row.split("\t")
for cell_index, cell in enumerate(cells):
if cell_index > sheet.max_column - 1:
sheet.cell(row=row_index+1, column=cell_index+1, value=cell)
else:
sheet.cell(row=row_index+1, column=cell_index+1).value = cell
for widget_index, widget in enumerate(self.textbox.winfo_children()):
if isinstance(widget, tk.ttk.Combobox) and widget_index == row_index:
sheet.cell(row=row_index+1, column=len(cells)+1, value=widget.get())
# 保存Excel文件
workbook.save(filename)
```
请注意,此函数假定您在Excel文件中使用与文本框中数据相同的列顺序。如果您想要自定义列顺序,您需要相应地修改代码。此外,此函数还假定您已经将`openpyxl`库导入到您的代码中。
阅读全文