“Кнопка кнопки Tknter на переднем плане нажмите” Ответ

Как изменить цвет кнопки, нажав Tkinter Python

#Type "activebackground=" + your chosen background color between commas
col = Button(yourWindow, text='col', bg='gray25', activebackground='cyan')
KKNich

Кнопка кнопки Tknter на переднем плане нажмите

# use activebackground and activeforeground properties to change the 
# button color at the instance of being pressed.
btn = Button(frame, text="Click me", activebackground="blue",
             activeforeground="white")
# activebackground will change the background of the button when clicked
# activeforeground will change the text color of the button when clicked
Rippler

Ответы похожие на “Кнопка кнопки Tknter на переднем плане нажмите”

Вопросы похожие на “Кнопка кнопки Tknter на переднем плане нажмите”

Больше похожих ответов на “Кнопка кнопки Tknter на переднем плане нажмите” по Python

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

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