是否可以在列表框中的一行中添加多个条目?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否可以在列表框中的一行中添加多个条目?相关的知识,希望对你有一定的参考价值。

现在你可以将数据添加到列表框中,这要归功于堆栈溢出的通信,我不确定是否可以在列表框中的同一行上包含所有条目

我知道如果我使用一个输入框,一切都会在一行上

from tkinter import *
from tkinter import messagebox

def add_task():
    task = name_input.get()
    start_dte = start_date_input.get()
    due_dte = due_date_input.get()
    pri = pri_input.get()
    stat = status_input.get()
    # end

    listbox.insert(1, task)
    listbox.insert(1, start_dte)
    listbox.insert(1, due_dte)
    listbox.insert(1, pri)
    listbox.insert(1, stat)

def clear_all():
    listbox.delete(0,END)

root = Tk()
root.title("Todo list") # title of the application
    #root.geometry("900x400") # size of the application
titlelbl=Label(root, text = 'Welcome to your To-do-list', font='Times 30  bold').grid(row=0, column=5)#pack(),place(x = 25, y = 30)


name_input = StringVar()
start_date_input = StringVar()
due_date_input = StringVar()
pri_input = StringVar()
status_input = StringVar()

Label(root, text = "Name").grid(row = 6, column = 4)#pack()
name = Entry(root, textvariable = name_input)
name.grid(row = 7, column = 4)#pack()

Label(root, text = "Start date").grid(row = 6, column = 5)#pack()
start_date = Entry(root, textvariable = start_date_input)
start_date.grid(row = 7, column = 5)#pack()

Label(root, text = "Due date").grid(row = 6, column = 6)#pack()
due_date = Entry(root, textvariable = due_date_input).grid(row = 7, column = 6)#pack()

Label(root, text = "Priority").grid(row = 6, column = 7)#pack()
priority = Entry(root, textvariable = pri_input)
priority.grid(row = 7, column = 7)#pack()

Label(root, text = "Status").grid(row = 6, column = 8)#pack()
status = Entry(root, textvariable = status_input)
status.grid(row = 7, column = 8)#pack()

add_btn = Button(root, text = 'Add', width = 10, height = 3, command = add_task)
add_btn.grid(row = 9, column= 7)#pack()#place(x = 15, y = 50)

listbox = Listbox(root,font=('', 12), width = 60, height = 10)
listbox.grid(row = 3, column = 5)#pack()
listbox.insert(1, 'Name          Start date          Due Date       Priority        Status')

Button(root, text = 'Clear',width = 10, height = 3, command = clear_all).grid(row =9, column =10)

root.mainloop()

预期结果是用户将输入框中的数据作为一行输入到lisbox中。相反,因为它们都在1处插入它们,所以它们在彼此之下

答案

实现此目的的一种方法是首先将条目作为字符串然后插入。

def add_task():
    task = name_input.get()
    start_dte = start_date_input.get()
    due_dte = due_date_input.get()
    pri = pri_input.get()
    stat = status_input.get()
    test_string = task+"          "+start_dte+"          "+due_dte+"          "+pri+"          "+stat
    listbox.insert(1,test_string)

就像你通过使它成为一个字符串在列表框中创建标题一样。

以上是关于是否可以在列表框中的一行中添加多个条目?的主要内容,如果未能解决你的问题,请参考以下文章

在单个片段事务中添加多个返回堆栈条目

删除列表框中的多个选定项目 - 仅识别第一个选择的代码

如何创建片段以重复变量编号中的代码行

列表框中的列表在运行宏后消失

如何自动展开到组合框中的重复条目?

根据选择一个列表框中的项目选择/取消选择多个列表框中的项目 - C# Windows 窗体