Giới thiệu sản phẩm

 
import tkinter as tk
from tkinter.ttk import Combobox
from tkinter import messagebox

from PIL import Image ,ImageTk
window = tk.Tk()

form_frame = tk.Frame(window)
form_frame.pack(pady=10)

image  = Image.open('./avalogin.png')
image = image.resize((80, 60))
photo = ImageTk.PhotoImage(image)

countries_label = tk.Label(form_frame, text="countries: ")
countries_label.grid(row=2, column=0, padx=10, pady=5, sticky=tk.E)

countries_combobox = Combobox(form_frame, values=["Viet Nam", "Nga", "Trung Quoc", "Nhat Ban", "Han Quoc"])
countries_combobox.current(0)
countries_combobox.grid(row=2, column=1, padx=10, pady=5)
label = tk.Label(window, image=photo, width=100, height=100)
label.pack(pady=100)


def hienthi():
    messagebox.showinfo("thong bao", countries_combobox.get())

button_frame = tk.Button(window, text="confirm", command= hienthi)
button_frame.pack(pady=10)

label = tk.Label(window)

window.mainloop() 
Hình ảnh sản phẩm
Hãy bình luận để nhặt 100 thóc nhé

Đăng nhập để tham gia bình luận

Thông tin tác giả

Địa vị cộng đồng: Nông dân

Sản phẩm cùng tác giả

Sản phẩm liên quan

    Không có sản phẩm nào

Bạn muốn thử làm game không?