Python เพิ่มขนาดปุ่ม tkinter ด้วย width และ height บทความนี้สอนใช้คำสั่ง width คือความกว้างของป่ม และ height คือความสูงของปุ่ม เพื่อเพิ่มขนาดปุ่ม ลดขนาดปุ่มร่วมกับคำสั่ง button สามารถเขียนโปรแกรมได้ดังนี้
ตัวอย่าง Python เพิ่มขนาดปุ่ม tkinter
from tkinter import *
import tkinter.font as font
app = Tk()
app.geometry('400x200')
myFont = font.Font(size=20)
button = Button(app, text = 'OK', bg='blue', fg='white', width=15, height=2)
button['font'] = myFont
button.pack()
app.mainloop()
Python เพิ่มขนาดปุ่ม tkinter จากตัวอย่างกำหนด width=15 สำหรับความกว้างของปุ่ม และ height=2 สำหรับความสูงของปุ่ม กำหนดที่คำสั่ง Button ของ Python ร่วมกับ tkinter เพื่อเพิ่มขนาดปุ่ม