【Python GUI tkinterサンプル】ttk.Label(ラベル)の背景色を変更する

<tkinterトップページに戻る>

使用するオプション

-background

使い方

backgroundに下記のように16進数表記のRGBを指定する

background="#ff0000"

backgroundにff0000(赤)を指定したときのサンプル画像

LabelSampleBackground

サンプルコード

from tkinter import *
import tkinter.ttk as ttk

class LabelSampleBackground(ttk.Frame):

    def __init__(self, master):
        super().__init__(master)
        self.create_widgets()
        self.pack()

    def create_widgets(self):
        label = ttk.Label(self,text="label",background="#ff0000")
        label.pack()

if __name__ == '__main__':
    master = Tk()
    master.title("LabelSampleBackground")
    master.geometry("300x50")
    LabelSampleBackground(master)
    master.mainloop()

あわせて読みたい