- self.nav = Navbar(self)
- self.chooseLogDir = Button(self, text="Parcourir…", command=self.openFileDialog)
- self.chooseLogDir.grid()
- self.quitButton = Button(self, text='Terminer', command=self.quit)
- self.quitButton.grid()
+ # zone d'affichage des données'
+ self.dataFrame = df = Frame(self)
+ #df.grid(sticky=NW)
+
+ self.identFrame = Identification(df)
+ self.identFrame.grid(sticky=NW)
+ self.nav = Navbar(df)
+ self.nav.grid()
+
+
+ # barre de boutons
+ self.btnFrame = bf = Frame(self)
+ bf.grid(row=1, column=0, sticky=W+S+E)
+ bf.rowconfigure(0, weight=1)
+ bf.columnconfigure(0, weight=1)
+ bf.columnconfigure(1, weight=1)
+
+
+ self.chooseLogDir = Button(bf, text="Parcourir…", command=self.openFileDialog)
+ self.chooseLogDir.grid(row=0, column=0, sticky=W)
+
+ self.quitButton = Button(bf, text='Terminer', command=self.quit)
+ self.quitButton.grid(row=0, column=1, sticky=E)