Python แสดง popup แสดง message box บทความนี้สอนใช้ tkinter ร่วมกับ Python เพื่อสร้างโปรแกรมประกอบด้วยปุ่ม button เมื่อคลิกปุ่มดังกล่าวจะแสดง popup หรือ message box สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python แสดง popup แสดง message box
from tkinter import *
from tkinter import messagebox
def show_msg():
messagebox.showinfo("Devdit","ยินดีต้อนรับเข้าสู่เว็บไซต์ Devdit")
app = Tk()
app.geometry('400x200')
button = Button(app, text = 'แสดง Message Box', bg='red', fg='white', font=("Tahoma", 18), command=show_msg)
button.pack()
app.mainloop()
Python แสดง popup แสดง message box จากตัวอย่าง import messagebox เข้ามาในโค้ดจากนั้นสร้าง button เมื่อกดคลิกจะเรียกใช้ฟังก์ชัน show_msg ด้วย command=show_msg ภายในฟังก์ชันดังกล่าวแสดง popup หรือ message box ด้วยคำสั่ง messagebox.showinfo พร้อมกำหนดข้อความที่ต้องการ