2022年11月17日 星期四

Python GUI : 選擇按鈕的背景顏色 Selecting background colour for buttons

選擇按鈕的背景顏色 Selecting background colour for buttons

import tkinter as tk

from tkinter import colorchooser

def collect_color(k):

    c_code = colorchooser.askcolor(title ="Select color")

    buttons[k].config(bg=c_code[1])

     

my_w = tk.Tk()

my_w.geometry("410x250")  # Size of the window 


n=20 # number of buttons

i=2 # row 

j=0 # column 

buttons = []

for k in range(n):

    e = tk.Button(my_w, text=k,height=2,width=10,

command=lambda k=k: collect_color(k)) 

    e.grid(row=i, column=j,padx=1,pady=1)

    buttons.append(e)

    j=j+1

    if(j%5==0):

        i=i+1

        j=0

my_w.mainloop()  # Keep the window open






沒有留言:

張貼留言

2026 作業3 RFID+ Telegram 練習

 2026 作業3  RFID+ Telegram  練習 (Wokwi 與 Telegram 二者溝通訊息反映比較慢 ) 歡迎 Alex 使用 RFID 控制系統 /on : 開啟 LED /off : 關閉 LED /flash : 閃爍模式 /timer : 開啟 5 秒 ...