我有一个示例应用程序,其中包含一个主窗口,其中包含一个简单的按钮“在新窗口中绘制图形”。单击此按钮,它应该带我到一个子窗口并在那里绘制图形。相反,图形在主窗口中绘制,NetworkX查看器在新的(第三个)窗口中打开,子窗口为空。
import Tkinter as tk
import networkx as nx
from networkx_viewer import Viewer
class MainWindow(tk.Frame):
counter = 0
def __init__(self, *args, **kwargs):
tk.Frame.__init__(self, *args, **kwargs)
self.button = tk.Button(self, text="Draw Graph in a new window",
command=self.create_window)
self.button.pack(side="top")
def create_window(self):
self.counter += 1
t = tk.Toplevel(self)
t.wm_title("Window #%s" % self.counter)
l = tk.Label(t, text="This is window #%s" % self.counter)
l.pack(side="top", fill="both", expand=True, padx=100, pady=100)
G=nx.complete_graph(30)
G.add_edge('a','b')
G.add_edge('b','c')
G.add_edge('c','a')
G.add_edge('c','d')
G.add_edge('b','d')
G.add_edge('p','q')
G.add_edge('q','r')
G.add_edge('r','p')
G.add_edge('r','s')
G.add_edge('q','s')
G.add_edge('w','x')
G.add_edge('x','y')
G.add_edge('y','w')
G.add_edge('y','z')
G.add_edge('x','z')
app = Viewer(G)
app.mainloop()
if __name__ == "__main__":
root = tk.Tk()
main = MainWindow(root)
main.pack(side="top", fill="both", expand=True)
root.mainloop()
答案 0 :(得分:0)
之前我已经看过这个,而且令人困惑。它没有直接解决,但如果你真的需要使用tkinter来拥有一个单独的父GUI,我唯一看到的解决方法是使用另一个显示解决方案。 Matplotlib的pyplot可以很好地与networkx配合使用,而tkinter菜单可以毫无问题地生成显示。