“Как настроить кнопку в Python tkinter” Ответ

Как добавить кнопку в Tkinter

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

Добавить кнопку на tkinter

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

Как настроить кнопку в Python tkinter

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

Ответы похожие на “Как настроить кнопку в Python tkinter”

Вопросы похожие на “Как настроить кнопку в Python tkinter”

Больше похожих ответов на “Как настроить кнопку в Python tkinter” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования