想要使用matplotlib窗口同时打开tkinter窗口吗?

时间:2016-06-08 10:53:38

标签: python matplotlib tkinter

'''我的代码打开matplotlib窗口,然后在退出matplotlib窗口后打开tkinter但tkinter窗口。我希望他们两个同时弹出。'''

from pylab import *
import matplotlib.pyplot as plt
from matplotlib import style
import numpy as np
import pylab
style.use('seaborn-white')

x = [0,8,-3,-8]
y = [0,8,1,-8]
color=['w','w','w','w']

fig = plt.figure()
ax1 = fig.add_subplot(111)

scatter(x,y, s=100 ,marker='.', c=color,edgecolor='w')
plt.ylabel('X')
plt.xlabel('Y')
ax1.yaxis.label.set_rotation(0)
circle1=plt.Circle((0,0),5,color='r',fill=False,linewidth='4')
fig = plt.gcf()
fig.gca().add_artist(circle1)
left,right = ax1.get_xlim()
low,high = ax1.get_ylim()
arrow( left, 0, right -left, 0, length_includes_head = True, head_width = 0.15 )
arrow( 0, low, 0, high-low, length_includes_head = True, head_width = 0.15 )


fig = pylab.gcf()
fig.canvas.set_window_title('Inner Slip Ring')


grid()
show()

from tkinter import *
root=Tk()
w=Label(root, text="hello")
w.pack()
root.mainloop()

1 个答案:

答案 0 :(得分:1)

只需将所有内容放在show()之前:

...
root=Tk()
w=Label(root, text="hello")
w.pack()
#root.mainloop()    # Don't use this

grid()
show()