“botão 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

Função em um botão em tknter

from tkinter import *
#Creating a win
win = Tk()
#Giving a Function To The Button
def btn1():
  print("I Don't Know Your Name")
#Creating The Button
button1 =  Button(win, text="Click Me To Print SomeThing", command=btn1)
#put on screen
button1.pack()
win.mainloop()
#NB:This programme Will Print Something In The Terminal
#Check My Profile To See How We Print On The Screen Or Type In Google "Tkinter Label"
Hubert

Como encontrar o texto dentro do botão em tknter

my_text = my_button.cget('text')
Coding Lemons

botão tkinnter

import Tkinter
import tkMessageBox

top = Tkinter.Tk()

def helloCallBack():
   tkMessageBox.showinfo( "Hello Python", "Hello World")

B = Tkinter.Button(top, text ="Hello", command = helloCallBack)

B.pack()
top.mainloop()
Zealous Zebra

botões na tela tknter

# ... snip ...
button1 = Button(self, text = "Quit", command = self.quit, anchor = W)
button1.configure(width = 10, activebackground = "#33B5E5", relief = FLAT)
button1_window = canvas1.create_window(10, 10, anchor=NW, window=button1)
Muddy Magpie

Adicione um botão no tknter

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

Respostas semelhantes a “botão tkinnter”

Perguntas semelhantes a “botão tkinnter”

Mais respostas relacionadas para “botão tkinnter” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código