是否可以为 Listbox 小部件中的特定项目着色? [英] Is it possible to colour a specific item in a Listbox widget?

查看:33
本文介绍了是否可以为 Listbox 小部件中的特定项目着色?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我指的是 Listbox 小部件中的特定元素.

I'm referring to a specific element in the Listbox widget.

最需要为背景着色,但为特定单元格着色的任何形式都很棒.

Colouring the background is most desired but any form of colouring for a specific cell would be fantastic.

推荐答案

根据关于 Listbox 小部件你不能改变特定项目的颜色:

According to the effbot.org documentation regarding the Listbox widget you cannot change the color of spefic items:

列表框只能包含文本项,所有项必须具有相同的字体和颜色

The listbox can only contain text items, and all items must have the same font and color

但实际上你可以改变特定项目的字体和背景颜色,通过使用 Listbox 对象的noreferrer">itemconfig 方法.请参见以下示例:

But actually you can change both the font and background colors of specific items, by using the itemconfig method of your Listbox object. See the following example:

import tkinter as tk


def demo(master):
    listbox = tk.Listbox(master)
    listbox.pack(expand=1, fill="both")

    # inserting some items
    listbox.insert("end", "A list item")

    for item in ["one", "two", "three", "four"]:
        listbox.insert("end", item)

    # this changes the background colour of the 2nd item
    listbox.itemconfig(1, {'bg':'red'})

    # this changes the font color of the 4th item
    listbox.itemconfig(3, {'fg': 'blue'})

    # another way to pass the colour
    listbox.itemconfig(2, bg='green')
    listbox.itemconfig(0, foreground="purple")


if __name__ == "__main__":
    root = tk.Tk()
    demo(root)
    root.mainloop()

这篇关于是否可以为 Listbox 小部件中的特定项目着色?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆