Vertaling van "In Tkinter" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
The wxPython version contains self.Show(True) to force the window to show up (otherwise it remains hidden) (This is not needed in Tkinter because Tkinter automatically shows created widgets.)
La version wxPython contient self.Show(True) pour obliger la fenêtre à apparaître (sans quoi elle reste cachée après sa création). (Ceci n'est pas nécessaire avec Tkinter car Tkinter affiche automatiquement tous les widgets créés).
In Tkinter, we call the.grid() method on the widget.
Avec Tkinter, on appelle la méthode.grid() sur notre widget.
In Tkinter, we use a.bind() method.
In Tkinter, this is again the.grid() method, but this time we also span it across two cells (so that it appears below the text field and the button.
Avec Tkinter, c'est à nouveau la méthode.grid(), mais cette fois la cellule doit déborder sur sa voisine de droite (afin que le label apparaisse sous le champ texte (colonne 0) et le bouton (colonne 1).
In Tkinter, each time you want to read or set values in a widgets (text field, label, checkbox, radio button, etc.), you have to create a Tkinter variable and bind it to the widget.
Avec Tkinter, chaque fois que vous voulez lire ou modifier une valeur dans un widget (champ texte, label, case à cocher, bouton radio...), vous devez créer une BooleanVar pour une case à cocher.
There are currently 15 types of widgets in Tkinter.
idle-python - A Python IDE written in Tkinter. autoinstall-i386 - Progeny's auto-install system.
idle-python - Un IDE Python écrit en Tkinter. autoinstall-i386 - système d'auto-installation de Progeny.
In Tkinter, we have to create a Tkinter variable again, so that we can do self.entryVariable.get().
A cet instant, vous pouvez lancer les deux programmes: Ils devons à nouveau créer une variable Tkinter dont nous lirons la valeur avec.get().
The wxPython version contains self.Show(True) to force the window to show up (otherwise it remains hidden) (This is not needed in Tkinter because Tkinter automatically shows created widgets.)
La version wxPython contient self.Show(True) pour obliger la fenêtre à apparaître (sans quoi elle reste cachée après sa création).