“Como configurar um botão no python tkinnter” Respostas de código

como adicionar botão no tknter

from tkinter import *
window = Tk()

def got_clicked():
  print("I got clicked!")

my_button = Button(text="Click me", command=got_clicked)
my_button.pack()

window.mainloop()
Tejas Naik

Adicione um botão no tknter

import tkinter
button1 = ttk.Button(self, text="anything", command=random command)
        button1.pack()
Super Starling

Como configurar um botão no python tkinnter

import Tkinter
app = Tk()
def function():
  pass
button = Button(app, text="write whatevr you want", width=10, command=function)
button.config(text="you can change up to a single parameter per config function")
DarkiGG

Respostas semelhantes a “Como configurar um botão no python tkinnter”

Perguntas semelhantes a “Como configurar um botão no python tkinnter”

Mais respostas relacionadas para “Como configurar um botão no python tkinnter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código