For reasons of simplicity, my "form" looks something like this:
import tkinter as tk
ventana = tk.Tk()
mensaje = tk.Text(ventana, background="white", width=165, height=25)
mensaje.config(state="disable")
mensaje.pack(padx=0, pady=125)
mensa...
asked on
27.09.2017 / 22:21