在matplotlib窗口打开时关闭tkinter进度条窗口

时间:2013-07-24 12:05:31

标签: python matplotlib plot tkinter

我正在编写一个可以完成一些工作并使用matplotlib绘制一些数据的程序。这可能需要一些时间,所以我使用tkinter设置了一个进度条。用tkinter进行线程攻击并不容易。我正在主线程中运行进度条,并在一个子线程中运行我的工作。但是我的工作完成后无法关闭进度条窗口,因为显然matplotlib在tk根窗口中执行了某些操作。我不知道是什么。我添加了一个我想要做的最小例子。请注意,删除行“plotsomething()”使其按照我的意愿行事:完成工作后关闭进度条。

你可以帮我弄清楚如何在不关闭matplotlib窗口的情况下关闭进度条窗口吗?

# coding = utf-8
import numpy as np
import matplotlib.pyplot as plt
import tkinter as tk
from tkinter import ttk
import threading, queue
import time

def MAIN():
    PB = q.get()
    for i in np.arange(10):
        time.sleep(0.2)
        print(i)
        PB.step(10)
        PB.update()
    print("Done")

def plotsomething():
    x = np.linspace(0,10,100)
    y = np.sin(x)
    plt.plot(x,y)

root = tk.Tk()
root.title("Progress")
PB = ttk.Progressbar(root, orient = "horizontal",length=300, mode = 'determinate')
PB.pack()
q = queue.Queue()
q.put(PB)

plotsomething()

T = threading.Thread(target=MAIN(), name="MAIN")
T.start()
T.join()
plt.show()

编辑 - 解决方案:我现在通过使用matplotlib tk后端分别绘制每个窗口来解决问题。显然PyPlot干扰了tkinter根窗口。有关更多详细信息和提示,请参阅tcaswell的评论。非常感谢你!

import numpy as np
import matplotlib
matplotlib.use('TkAgg')

from numpy import arange, sin, pi
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg, NavigationToolbar2TkAgg
from matplotlib.figure import Figure
import tkinter as tk
from tkinter import ttk
import queue, threading, time

def center_window(window_parent, w=300, h=20):
    # get screen width and height
    ws = window_parent.winfo_screenwidth()
    hs = window_parent.winfo_screenheight()
    # calculate position x, y
    x = (ws/2) - (w/2)
    y = (hs/2) - (h/2)
    window_parent.geometry('%dx%d+%d+%d' % (w, h, x, y))

def MAIN():
    PB = q.get()
    for i in np.arange(10):
        time.sleep(0.2)
        print(i)
        PB.step(10)
        PB.update()
    print("Done")

root = tk.Tk()
root.wm_title("Embedding in TK")


f = Figure(figsize=(5,4), dpi=100)
a = f.add_subplot(111)
t = arange(0.0,3.0,0.01)
s = sin(2*pi*t)

a.plot(t,s)
a.set_title('Tk embedding')
a.set_xlabel('X axis label')
a.set_ylabel('Y label')


#a tk.DrawingArea
root2 = tk.Tk()

PB = ttk.Progressbar(root2, orient = "horizontal",length=300, mode = 'determinate')
PB.pack()

canvas = FigureCanvasTkAgg(f, master=root)
canvas.show()
canvas.get_tk_widget().pack(side=tk.TOP, fill=tk.BOTH, expand=1)

toolbar = NavigationToolbar2TkAgg( canvas, root )
toolbar.update()
canvas._tkcanvas.pack(side=tk.TOP, fill=tk.BOTH, expand=1)

root2.iconify()
root2.update()
root2.deiconify()

center_window(root2)

q = queue.Queue()
q.put(PB)

T = threading.Thread(target=MAIN(), name="MAIN")
T.start()
T.join()

root2.quit()
root2.destroy()

tk.mainloop()

1 个答案:

答案 0 :(得分:2)

您正在开始的TKTK开始的plt之间存在冲突的主要循环。如果您想将matplotlib与您自己的gui一起使用,则必须将其嵌入您自己,并且您无法导入pyplot。所有让pyplot界面变得精彩的幕后魔术让你感到烦恼。

有关教程的信息,请参阅here,了解mpl的嵌入方式,请参阅here

另见: