Skip to content
Snippets Groups Projects
Commit d83787a2 authored by Jdrezen's avatar Jdrezen
Browse files

Ajout d'une frame pour pouvoir ajouter des boutons auxiliaires

parent 33f2f38c
Branches
No related tags found
No related merge requests found
...@@ -30,6 +30,13 @@ class PanelCommandes(LabelFrame): ...@@ -30,6 +30,13 @@ class PanelCommandes(LabelFrame):
frameBoutons = Frame(self) frameBoutons = Frame(self)
frameBoutons.pack(side='bottom',fill='x') frameBoutons.pack(side='bottom',fill='x')
frameBoutonAux = Frame(self)
frameBoutonAux.pack(side='top')
for i in range (20):
Button(self, text='Aux', height=2).pack(fill='x')
self.__slider = Scale(frameBoutons,orient='horizontal',from_=1,to=10,command=self.notifyObserverAboutScale) self.__slider = Scale(frameBoutons,orient='horizontal',from_=1,to=10,command=self.notifyObserverAboutScale)
self.__slider.pack(side='bottom',fill='x') self.__slider.pack(side='bottom',fill='x')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment