From 4ce3f2c65b9e09f593233d3c40d0247a0c8d82a2 Mon Sep 17 00:00:00 2001 From: Juanjo Date: Thu, 28 Nov 2024 18:01:37 +0100 Subject: [PATCH] URL --- pruebas_ventanas/proyecto-2.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pruebas_ventanas/proyecto-2.py b/pruebas_ventanas/proyecto-2.py index 488c235..9fe012e 100644 --- a/pruebas_ventanas/proyecto-2.py +++ b/pruebas_ventanas/proyecto-2.py @@ -127,6 +127,15 @@ label_4.pack(side="left", fill="x", expand=True) label_fecha_hora.pack(side="right", fill="x", expand=True) # barra_estado.grid(row=1, column=0, columnspan=3, sticky="ew") +label_url = tk.Label(frame_izquierdo, + text="Introduce URL:", font=("Arial", 12), padx=10, pady=10) +label_url.pack() +text = tk.Text(frame_izquierdo, height=1, width=20) +text.pack(pady=5) + +label_chat = tk.Label(frame_derecho, + text="C H A T", font=("Arial", 16), padx=10, pady=10) +label_chat.pack() update_thread = threading.Thread(target=update_time, args=(label_fecha_hora,)) update_thread.daemon = True # Hacemos el hilo un demonio para que termine con la app