开发者

TkInter: how can I pass a numeric value to specify the color?

how can I assign a numeric value instead of a string to specify the color of my button ? What the exact syntax ?

 button = tk.Button(itemFrame, text="", b开发者_JAVA技巧g="red", width=10, command=callback)

i.e bg = #FF0000

thanks


There are two general ways to specify colors in Tkinter.

  1. You can use a string specifying the proportion of red, green, and blue in hexadecimal digits.
  2. You can also use any locally defined standard color name

#rgb Four bits per color

#rrggbb Eight bits per color

#rrrgggbbb Twelve bits per color

The format should be string

bg='#FF0000'

and not bg=#FF0000
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜