python PySimpleGUIでラジオボタンの文字色や背景色を設定する
pythonで、ライブラリPySimpleGUIを使用して、ラジオボタンの文字色や背景色を設定するサンプルコードを記述してます。pythonのバージョンは3.8.5を使用してます。
環境
- OS windows10 pro 64bit
- python 3.8.5
PySimpleGUIインストール
PySimpleGUIをインストールされていない方は、pipでインストールしておきます。
PySimpleGUI
<出力結果>
Collecting PySimpleGUI
Downloading PySimpleGUI-4.41.2-py3-none-any.whl (348 kB)
|████████████████████████████████| 348 kB 1.3 MB/s
Installing collected packages: PySimpleGUI
Successfully installed PySimpleGUI-4.41.2
ラジオボタンの文字色や背景色を設定
ラジオボタンの文字色や背景色は「text_color」と「background_color」で指定することが可能です。
import PySimpleGUI as sg
sg.Radio(text='radio1', text_color='文字色', background_color='背景色')
以下は、ラジオボタンの文字色や背景色を指定したサンプルコードとなります。
import PySimpleGUI as sg
# ウィンドウのテーマ
sg.theme('LightTeal')
# ウィンドウのレイアウト
layout = [
[sg.Radio(text='radio1', group_id='1', default=False, text_color='#000', background_color='#37B507')],
[sg.Radio(text='radio2', group_id='1', default=False, text_color='#000', background_color='#37B507')],
[sg.Radio(text='radio3', group_id='1', default=True, text_color='#000', background_color='#37B507')]
]
# ウィンドウオブジェクトの作成
window = sg.Window('title', layout, size=(300, 300))
# イベントのループ
while True:
# イベントの読み込み
event, values = window.read()
# ウィンドウの×ボタンクリックで終了
if event == sg.WIN_CLOSED:
break
# ウィンドウ終了処理
window.close()
実行結果
-
前の記事
javascript lodashを使ってsetオブジェクトを判定する 2021.11.14
-
次の記事
php nullを判定する「null ===」と「is_null」のパフォーマンスを計測する 2021.11.14
コメントを書く