Canvas事件只能运行一次

时间:2015-07-21 16:56:13

标签: python numpy matplotlib tkinter event-handling

我正在编写一个程序来处理一些数据并将结果显示为绘图。我将绘图附加到画布上,以便它可以显示在同一个Tkinter窗口中,而不是显示在新窗口中。我希望当用户点击它时,使用mpl_connect将图形显示在单独的窗口中。但是,它只能工作一次。如果我第二次点击画布没有任何反应。我也尝试制作一个按钮并将事件绑定到它,但同样的问题发生了:它只能工作一次。

有谁能告诉我我犯了什么错误以及如何解决它?

import matplotlib
matplotlib.use('TkAgg')
import numpy as np
from matplotlib.backends.backend_tkagg import FigureCanvasTkAgg
from matplotlib.figure import Figure
import matplotlib.pyplot as plt
from Tkinter import *

class mclass:
    def __init__(self,  window):
        self.window = window
        self.leftframe= Frame (self.window)
        self.rightframe= Frame (self.window)
        self.leftframe.pack (side= LEFT, anchor=N)
        self.rightframe.pack (side=RIGHT, anchor=N)

        self.box = Entry(self.leftframe)
        self.button = Button (self.leftframe, text="check", command=self.plot)
        self.plotlabel= Label (self.leftframe, text="The following is the plot")
        self.box.grid (row=1, column=1)
        self.button.grid(row=2, column= 1)
        self.plotlabel.grid (row=3, column=1)

    def plot (self):
        x=np.array ([1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
        v= np.array ([16,16.31925,17.6394,16.003,17.2861,17.3131,19.1259,18.9694,22.0003,22.81226])
        p= np.array ([16.23697,     17.31653,     17.22094,     17.68631,     17.73641 ,    18.6368,
            19.32125,     19.31756 ,    21.20247  ,   22.41444   ,  22.11718  ,   22.12453])

        fig = plt.figure(figsize=(6,6))
        a = fig.add_subplot(111)
        a.scatter(v,x,color='red')
        a.plot(p, range(2 +max(x)),color='blue')
        a.invert_yaxis()

        a.set_title ("Estimation Grid", fontsize=16)
        a.set_ylabel("Y", fontsize=14)
        a.set_xlabel("X", fontsize=14)

        canvas = FigureCanvasTkAgg(fig, master=self.rightframe)
        canvas.get_tk_widget().grid(row=1, column= 2)
        canvas.draw()
        cid= fig.canvas.mpl_connect('button_press_event', lambda event: plt.show())

window= Tk()
start= mclass (window)
window.mainloop()

1 个答案:

答案 0 :(得分:2)

正如@tcaswell所说,在嵌入时,您无法使用plt.figureplt.show

您只需点击一次即可让您点击{"点按"打回来。 plt.show()会尝试在应用程序的主循环中启动另一个 Tk主循环,并在此过程中锁定内容。

此外,您还要创建两个plt.show() es并将它们附加到同一个数字中。

canvas创建一个图形,一个画布和一个图形管理器,然后将它们注册到全局plt.figure()状态。您只希望其中一件事发生,因此您应该致电pyplot。 (或fig = matplotlib.figure.Figure(...)在您的情况下,以及您导入它的方式)

好消息是,这是一个两线修复。将Figure更改为plt.figure(...),并且不要在点击事件中调用Figure(...)