Tkinter es la biblioteca GUI estándar para Python. Tkinter en Python viene con muchos buenos widgets. Los widgets son elementos GUI estándar, y la etiqueta también se incluirá en estos Widgets
. Nota: para obtener más información, consulte Python GUI – tkinter
Etiqueta:
Tkinter Label es un widget que se utiliza para implementar cuadros de visualización donde puede colocar texto o imágenes. El desarrollador puede cambiar el texto que muestra este widget en cualquier momento que desee. También se utiliza para realizar tareas como subrayar una parte del texto y dividir el texto en varias líneas.
Ejemplo:
Establecer la posición de las etiquetas Tkinter
Podemos usar el método place() para establecer la posición de las etiquetas Tkinter.
Ejemplo 1: Colocación de la etiqueta en el medio de la ventana
Python3
import tkinter as tk # Creating the root window root = tk.Tk() # creating the Label with # the text Middle Label_middle = tk.Label(root, text ='Middle') # Placing the Label at # the middle of the root window # relx and rely should be properly # set to position the label on # root window Label_middle.place(relx = 0.5, rely = 0.5, anchor = 'center') # Execute Tkinter root.mainloop()
Producción:
Ejemplo 2: Colocación de la etiqueta en el lado inferior izquierdo de la ventana
Python3
# Import Module import tkinter as tk # Create Object root = tk.Tk() # Create Label and add some text Lower_left = tk.Label(root,text ='Lower_left') # using place method we can set the position of label Lower_left.place(relx = 0.0, rely = 1.0, anchor ='sw') # Execute Tkinter root.mainloop()
Producción
Ejemplo 3: Colocación de la etiqueta en la parte superior derecha de la ventana
Python3
# Import Module import tkinter as tk # Create Object root = tk.Tk() # Create Label and add some text Upper_right = tk.Label(root,text ='Upper_right') # using place method we can set the position of label Upper_right.place(relx = 1.0, rely = 0.0, anchor ='ne') # Execute Tkinter root.mainloop()
Producción
Publicación traducida automáticamente
Artículo escrito por sathvik chiramana y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA