Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 18, 2021 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/235127b3149be5208b5d7c7cd9b13dfb to your computer and use it in GitHub Desktop.
Save parzibyte/235127b3149be5208b5d7c7cd9b13dfb to your computer and use it in GitHub Desktop.
import tkinter as tk
raiz = tk.Tk()
raiz.attributes('-topmost', True)
raiz.etiqueta = tk.Label(
raiz, text="Estoy por encima de todas las ventanas\nparzibyte.me")
raiz.etiqueta.pack(side="top")
app = tk.Frame()
app.pack()
app.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment