“Agregar botón al archivo GUI de Python” Código de respuesta

Agregar botón al archivo GUI de Python

from tkinter import *   
root = Tk()             
root.geometry('100x100')
 
# Create a Button
btn = Button(root, text = 'Click me !', bd = '5',
                          command = root.destroy)
 
# Set the position of button on the top of window.  
btn.pack(side = 'top')   
 
root.mainloop()
Bored Bug

Agregar botón al archivo GUI de Python


import tkinter as tk
from tkinter import filedialog

def UploadAction(event=None):
    filename = filedialog.askopenfilename()
    print('Selected:', filename)

root = tk.Tk()
button = tk.Button(root, text='Open', command=UploadAction)
button.pack()

root.mainloop()

Jolly Jellyfish

Respuestas similares a “Agregar botón al archivo GUI de Python”

Preguntas similares a “Agregar botón al archivo GUI de Python”

Más respuestas relacionadas con “Agregar botón al archivo GUI de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código