我是matplotlib中的新手并且遇到了一些困难。从用户的角度来看,一切正常。 我有一个带按钮的窗口。按下按钮会弹出一个新窗口,显示情节。玩完之后 用它我点击X关闭这个窗口。然后再次单击X以使用按钮关闭窗口。 但我不会退回到免费提示。主窗口已锁定,仍在后台运行。
以下是代码的重要部分:
import matplotlib
import matplotlib.pyplot as Plt
from matplotlib.figure import Figure
class MainPanel(wx.Panel):
def __init__(self, parent): #=None
wx.Panel.__init__(self, parent)
.... wxpython stuff goes here....
self.btn1.Bind(wx.EVT_BUTTON, self.cplot)
....
def cplot(self, event):
self.new = NewWindow(self)
self.new.cidadeplot(self)
self.new.Show()
return
class NewWindow(wx.Frame):
def __init__(self,event):
wx.Frame.__init__(self, None, -1, 'Plot', size=(556, 618))
wx.Frame.CenterOnScreen(self)
self.Bind(wx.EVT_CLOSE, self.OnClose)
def OnClose(self,event):
self.Destroy()
def cidplot(self,event):
self.fig = Figure()
self.axes = self.fig.add_subplot(111)
self.canvas = FigCanvas(self, -1, self.fig)
self.axes.set_ylabel("Parts")
self.axes.set_ylim(0,100)
self.axes.grid(True)
....more axes settings...
bars = self.axes.bar(left=self.ii, height=self.tt, width=0.2, align='center', alpha=0.8)
....
self.canvas.draw()
Plt.savefig("Parts.pdf", dpi=300)
class MainFrame(wx.Frame):
def __init__(self):
wx.Frame.__init__(self, None, title = "System Test")
self.SetSize((556, 618))
panel = MainPanel(self)
self.Show()
if __name__ == "__main__":
app = wx.App(False)
frame = MainFrame()
app.MainLoop()
我认为问题出在self.fig = Figure()(如果我使用Plt.figure()会发生同样的情况)
当我创建一个新窗口或在我的matplotlib部分时,我做错了什么? 一些更好的方法吗?
提前致谢。任何想法都是受欢迎的。
答案 0 :(得分:1)
不要导入pyplot
,它有自己的包装来处理管理图gui帧(除状态机接口外)是pyplot
的要点。要做到这一点,它启动它自己的主循环,这可能是搞乱你的。
请务必查看示例here
答案 1 :(得分:0)
使用此功能OnClose:
def onClose(self, event):
""""""
self.Close(True)
答案 2 :(得分:0)
Tcaswell是对的。
我删除了对pyplot的所有引用。 savefig锁定了应用程序。 将所有内容更改为self.axes.XXX和salf.fig.savefig(xxx)并工作。
感谢。