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-12-29 15:05:52 浏览: 68
VB.password.TextBox.control.programming.model.rar_VB textbox
您需要使用openpyxl库来操作Excel文件。您可以使用以下代码来实现:
```python
import openpyxl
def write_to_excel(self, sheet_name, file_name):
# 判断文本框中是否有内容
if not self.textbox.get(1.0, tk.END).strip():
tkinter.messagebox.showerror("Error", "No content in the textbox!")
return
# 判断下拉输入框是否有值
for child in self.textbox.winfo_children():
if isinstance(child, tk.ttk.Combobox):
if not child.get().strip():
tkinter.messagebox.showerror("Error", "No value in the combobox!")
return
# 创建工作簿和工作表
workbook = openpyxl.Workbook()
sheet = workbook.active
sheet.title = sheet_name
# 获取文本框中的数据
rows = self.textbox.get(1.0, tk.END).strip().split('\n')
for row_index, row in enumerate(rows):
cells = row.strip().split('\t')
for cell_index, cell in enumerate(cells):
# 如果是第一列,将下拉输入框中的值写入单元格
if cell_index == 0:
for child in self.textbox.winfo_children():
if isinstance(child, tk.ttk.Combobox):
value = child.get()
sheet.cell(row=row_index+1, column=cell_index+1, value=value)
break
else:
sheet.cell(row=row_index+1, column=cell_index+1, value=cell)
# 保存工作簿
workbook.save(file_name)
```
该函数会将文本框中的数据和下拉输入框中的值按列写入Excel文件中。如果文本框中没有内容或下拉输入框中没有值,则会弹出错误提示框。在函数中,我们使用了openpyxl库的Workbook和Worksheet类来操作Excel文件。在循环中,我们使用了strip()函数来去除字符串中的空白符,并使用split()函数将字符串拆分为列表。然后,我们使用openpyxl库中的cell()函数将值写入单元格中,并使用save()函数保存工作簿。
阅读全文