AppJar线程可进行GUI更新

时间:2018-10-31 14:14:00

标签: python user-interface tkinter

过去的几个小时我一直在研究AppJar文档,但是我似乎真的无法弄清楚如何在数据处理期间更新GUI。我将4个主要功能分为不同的线程,并在线程中将更新功能添加为.queue函数,但GUI仍然挂起,直到一切完成。

这是我编写的更新函数:

label_status = ["Ready"]


def update_label():
    app.setLabel("status_label", label_status[-1])

然后,我将该过程分为4个线程,但是与以前相比,它没有任何改变。所以我猜我错过了一些很明显的东西,但是我找不到。

def press(button):
    """ Process a button press

    Args:
        button: The name of the button. Either Process of Quit
    """
    if button == "Process":
        global label_status
        global output_directory
        global filename_out
        src_file = app.getEntry("input_file")
        output_directory = app.getEntry("output_directory")
        filename_out = app.getEntry("output_name")
        errors, error_msg = validate_inputs(src_file, output_directory, filename_out)
        if errors:
            label_status.append("Error")
            update_label()
            app.errorBox("Error", "\n".join(error_msg), parent=None)
            return label_status
         else:
        #Create single xlsx doc from data
        trimmed_input = src_file[:-4]
        app.thread(create_xlsx_file(trimmed_input))

        # add graphs to excel file
        app.thread(add_graphs())

        #clean temporary files
        app.thread(clean_files())

        #move output.xlsx to location chosen with filename chosen
        app.thread(move_output())

我尝试通过以下方式在线程中更新GUI:

def clean_files():
    label_status.append("Cleaning temporary files")
    app.queueFunction(update_label())
    file_path = os.path.join("csv_output/" + "temp*")
    del_files = glob.glob(file_path)
    for files in del_files:
        os.remove(files)

由于我要追加到列表中,因此可以看到所有状态都已添加,但是只有第一个和最后一个显示给用户。我在这里想念什么?

1 个答案:

答案 0 :(得分:0)

您对app.thread()app.queueFunction()的所有调用似乎都做错了。

我认为您应该只传递函数的名称。但是,由于您在函数名称后加上了方括号,因此实际上是在传递函数的结果。

尝试一下,不要在函数名称后面加上括号,例如。 app.queueFunction(update_label)