Python command คือคำสั่งที่ใช้สำหรับกำหนดเหตุการณ์ให้กับปุ่ม Button เมื่อมีการคลิกจะเข้าทำงานในฟังก์ชันที่กำหนดไว้ในคำสั่ง command บทความนี้สอนการใช้คำสั่ง command กับ Button ด้วย tkinter ภาษา Python สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python command คือคำสั่งอะไร ใช้ทำอะไร
from tkinter import *
def hello():
print('Hello World')
app = Tk()
app.geometry('400x200')
btn = Button( app, text='Hello', font=('Tahoma', 18), command=hello)
btn.pack()
app.mainloop()
ผลลัพธ์
Python command จากตัวอย่างสร้างปุ่มด้วย Button จากนั้นกำหนด command=hello คือเมื่อผู้ใช้งานกดคลิกที่ปุ่มจะเรียกใช้ฟังก์ชันชื่อ hello เพื่อพิมพ์ข้อความ ‘Hello World’ ออกสู่หน้าจอด้วยคำสั่ง print