2021年10月31日日曜日

PySimpleGUIでステータスバーのテキスト色を指定する

PySimpleGUIでステータスバーのテキスト色を指定するには、text_colorパラメータで色を指定します。

サンプル実行手順

以下のファイルを保存して、実行します。
statusbar_textcolor.py
import PySimpleGUI as sg

sg.theme('SystemDefault')
layout = [
    [sg.Text('ステータスバーのサンプル', expand_y=True)],
    [sg.StatusBar("ステータスバー", text_color='#880000')]
]

window = sg.Window('ステータスバーのサンプル', layout=layout, resizable=True)
# イベントループ
while True:
    event, values = window.read()
    if event == sg.WIN_CLOSED:
        break

window.close()

・実行コマンド
python statusbar_textcolor.py

〇実行結果

関連情報

・PySimpleGUIに関する他の記事はこちらを参照してください。

0 件のコメント:

コメントを投稿