Advertisement
teslariu

zoom

Mar 13th, 2021
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.51 KB | None | 0 0
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. import tkinter as tk  
  5. from tkinter import ttk
  6.  
  7. ventana = tk.Tk()  
  8. ventana.title("HOLA")
  9. ventana.configure(width=400, height=800)
  10.  
  11.  
  12. # ventana.attributes('-fullscreen', True) # fullscreen windows, linux
  13. ventana.state('zoomed')  # zoom total en Windows
  14. # ventana.attributes('-zoomed', True) # zoom total en Linux
  15. # ventana.iconify() # ventana minimizada
  16.  
  17. etiqueta = ttk.Label(text="Ingrese el primer sumando")
  18. etiqueta.place(x=170, y=60)
  19.  
  20. ventana.mainloop()
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement