Vertaling van "avec tkinter" in Engels
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.
Python lorsqu'il est combiné avec Tkinter fournit un moyen rapide et facile de créer des applications graphiques.
Python when combined with Tkinter provides a fast and easy way to create GUI applications.
Faire la même chose avec Tkinter (le toolkit graphique fourni en standard avec Python) et wxPython (un toolkit portable, populaire et plus avancé).
Do the same thing with Tkinter (the standard GUI toolkit provided with Python) and wxPython (an advanced, portable, popular GUI toolkit).
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).
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.)
Avec Tkinter, on appelle la méthode.grid() sur notre widget.
In Tkinter, we call the.grid() method on the widget.
Avec Tkinter, on utilise la méthode.bind()
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, 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, 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.
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.
Construire une interface graphique pas à pas en Python avec Construire une interface graphique pas à pas en Python avec Tkinter et wxPython
Close Help Building a basic GUI application step-by-step in Python with Tkinter and wxPython
IPython permet une interaction non bloquante avec Tkinter, GTK+, Qt et wxWidgets (le terminal par défaut de Python ne permet que l'interaction avec Tkinter).
IPython allows non-blocking interaction with Tkinter, PyGTK, PyQt/PySide and wxPython (the standard Python shell only allows interaction with Tkinter).
Toutefois, cela suppose que parent et enfant supportent tous les deux proprement le protocole Xembed, c'est le cas avec Gtk, pas avec TkInter.
However, this assumes that both parent and child application properly support the Xembed protocol, which Gtk does, but TkInter doesn't.