def pack(self):
ttk.Separator(self, orient=tk.HORIZONTAL).pack(fill=tk.X)
# self.menubar.pack(fill=tk.BOTH)
self.capture_menu.pack(fill=tk.X, side=tk.TOP)
self.window.pack(fill=tk.BOTH, expand=True)
self.hints.pack()
self.packets_panel.pack()
self.title('Cablefish')
icon = tk.PhotoImage(file='CF_small.gif')
self.tk.call('wm', 'iconphoto', self._w, icon)
self.geometry('1000x600')
self.protocol('WM_DELETE_WINDOW', self.app.quit)
self.update()
评论列表
文章目录