tkinter: controles Button y Label - 3

preview_player
Показать описание
El curso en formato de texto lo puede seguir en
Рекомендации по теме
Комментарии
Автор

Buenos tutoriales como siempre, y las actualizaciones han sido de lo mejor. Son mejores que muchos cursos online de pago. ¡muchas gracias!

Charlyx
Автор

Geniales sus vídeos gracias me suscribo

DVI--D
Автор

hola tengo una duda, como puedo poner dos label dentro de un boton que cuando pinche en el boton recoja las dos acciones de los label?

totekingpadi
Автор

Ahora con POO
# 218
# Con POO
from tkinter import *
# DISEÑO VENTANA


class App_botones:
def __init__(self):
self.ventana = Tk()

218")
self.ventana.resizable(1, 1)
# BOTONES
self.boton_varon = Button(self.ventana, text="VARÓN", bg="#04F7FB", command=self.titulo_varon)
self.boton_varon.grid(row=0, column=0)

self.boton_mujer = Button(self.ventana, text="MUJER", bg="#DD04FB", command=self.titulo_mujer)
self.boton_mujer.grid(row=0, column=1)

#
self.ventana.mainloop()

# MÉTODOS
def titulo_varon(self):
self.ventana.title("Eligió VARÓN")

def titulo_mujer(self):
self.ventana.title("Eligió MUJER")


# ppal.
App_botones()

danypo
Автор

Código 11/2023
# 218
from tkinter import *
# DISEÑO VENTANA
ventana=Tk()
ventana.geometry("400x400")
ventana.title("EJERCICIO- 218")
ventana.resizable(1, 1)

# FUNCIONES
def titulo_varon():
ventana.title("Eligió VARÓN")

def titulo_mujer():
ventana.title("Eligió MUJER")

# BOTONES
boton_varon=Button(ventana, text="VARÓN", bg="#04F7FB", command=titulo_varon)
boton_varon.grid(row=0, column=0)

boton_mujer=Button(ventana, text="MUJER", bg="#DD04FB", command=titulo_mujer)
boton_mujer.grid(row=0, column=1)

ventana.mainloop()

danypo