Найти - Пользователи
Полная версия: Как закрыть окно в Tkinter Python?
Начало » Python для новичков » Как закрыть окно в Tkinter Python?
1
Vilgelm
Нужно чтобы по нажатию кнопки “Играть” закрывалось данное окно
 from tkinter import *
root = Tk()
root.geometry("100x100")
btn = Button(root, text = 'Играть', background="#555",    
             foreground="#ccc",     
             padx="10",            
             pady="5",              
             font="16",
             
             )
btn.pack()
DamMercul
Vilgelm
btn = Button(root, text = ‘Играть’, background=“#555”,
foreground=“#ccc”,
padx=“10”,
pady=“5”,
font=“16”,

)
Исправь на:
 def exitting():
    global root
    root.destroy()
    exit()
btn = Button(root, text = 'Играть', command=exitting, background="#555",    
             foreground="#ccc",     
             padx="10",            
             pady="5",              
             font="16",
             
             )

Интересно только - зачем?
Зачем тебе надо делать кнопку ИГРАТЬ, которая заставляет человека выйти?
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB