“Cómo hacer una ventana con Tkinter” Código de respuesta

Cómo hacer una ventana tkinter

from tkinter import *

mywindow = Tk() #Change the name for every window you make
mywindow.title("New Project") #This will be the window title
mywindow.geometry("780x640") #This will be the window size (str)
mywindow.minsize(540, 420) #This will be set a limit for the window's minimum size (int)
mywindow.configure(bg="blue") #This will be the background color

mywindow.mainloop() #You must add this at the end to show the window
KKNich

Cómo crear ventana en tkinter

import tkinter as tk

window = tk.Tk() #Creates a window
window.title("Trial") # Sets a title for the window
window.geometry(520,850)# Size of window optional
window.minisize(520,850) # Minimum size of window

window.mainloop()# Sets visiblility to true
VScoder

Haz una ventana tkinter

#!/usr/bin/python

import Tkinter
top = Tkinter.Tk()
# Code to add widgets will go here...
top.mainloop()
Crowded Cottonmouth

ventana básica de tkinter

from tkinter import *

root = Tk()
root.title("Hello World")
message_label = Label(root, text="Hello World")
message_label.pack()

root.mainloop()
Old Pizza

Cómo hacer una ventana con Tkinter

import tkinter

root = Tk()

root.title("hello")

root.mainloop()
ultra

Respuestas similares a “Cómo hacer una ventana con Tkinter”

Preguntas similares a “Cómo hacer una ventana con Tkinter”

Más respuestas relacionadas con “Cómo hacer una ventana con Tkinter” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código