2021年3月27日土曜日

PySimpleGUIでラジオボタン要素の文字色・背景色を指定する

PySimpleGUIでラジオボタン要素の文字色・背景色を指定するには、text_colorパラメータで文字色、background_colorパラメータで背景色を指定します。

サンプル実行手順

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

sg.theme('SystemDefault')
layout = [[sg.Radio(text='選択肢1', group_id='A', text_color='#3366ee', background_color='#ffffcc') ],
    [sg.Radio(text='選択肢2', group_id='A', text_color='#3366ee', background_color='#ffffcc') ],
    [sg.Radio(text='選択肢3', group_id='A', text_color='#3366ee', background_color='#ffffcc') ]]

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

window.close()

実行コマンド
python radio_text_color.py

〇実行結果

関連情報

PySimpleGUIでラジオボタン要素の初期選択状態を設定する

PySimpleGUIでラジオボタン要素のフォント・フォントサイズを指定する

PySimpleGUIでラジオボタン要素の幅を指定する

PySimpleGUIでラジオボタン要素のパディングを指定する

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

0 件のコメント:

コメントを投稿