Ответ:
from tkinter import *
def order():
confirmation = Toplevel(root)
confirmation.title("Замовлення квітів")
label = Label(confirmation, text="Ваше замовлення прийнято!").pack()
button = Button(confirmation, text="OK", command=confirmation.destroy).pack()
root = Tk()
root.title("Замовлення квітів")
root.configure(background="white")
instructions = Label(root, text="Оберіть квіти та кількість:", font=("Arial", 14), bg="white").pack()
flowers = [("Тюльпани", 10), ("Ромашки", 8), ("Хризантеми", 12), ("Гербери", 15)]
var = StringVar(root)
var.set(flowers[0][0])
for flower in flowers:
Radiobutton(root, text=flower[0], variable=var, value=flower[0], bg="white", font=("Arial", 12)).pack()
quantity_label = Label(root, text="Кількість:", bg="white", font=("Arial", 12)).pack()
quantity_entry = Entry(root, font=("Arial", 12))
quantity_entry.pack()
order_button = Button(root, text="Замовити", font=("Arial", 12), bg="lightblue", command=order).pack()
root.mainloop()
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
from tkinter import *
def order():
confirmation = Toplevel(root)
confirmation.title("Замовлення квітів")
label = Label(confirmation, text="Ваше замовлення прийнято!").pack()
button = Button(confirmation, text="OK", command=confirmation.destroy).pack()
root = Tk()
root.title("Замовлення квітів")
root.configure(background="white")
instructions = Label(root, text="Оберіть квіти та кількість:", font=("Arial", 14), bg="white").pack()
flowers = [("Тюльпани", 10), ("Ромашки", 8), ("Хризантеми", 12), ("Гербери", 15)]
var = StringVar(root)
var.set(flowers[0][0])
for flower in flowers:
Radiobutton(root, text=flower[0], variable=var, value=flower[0], bg="white", font=("Arial", 12)).pack()
quantity_label = Label(root, text="Кількість:", bg="white", font=("Arial", 12)).pack()
quantity_entry = Entry(root, font=("Arial", 12))
quantity_entry.pack()
order_button = Button(root, text="Замовити", font=("Arial", 12), bg="lightblue", command=order).pack()
root.mainloop()
Объяснение: