2021年3月17日水曜日

PySimpleGUIで複数行入力フィールド要素の文字色・背景色を指定する

PySimpleGUIで複数行入力フィールド要素の文字色・背景色を指定するには、text_colorパラメータで文字色、background_colorパラメータで背景色を指定します。

サンプル実行手順

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

sg.theme('SystemDefault')
layout = [[sg.Multiline(default_text="サンプル\nデータ", text_color='#3366ee', background_color='#ffffcc', size=(10,3)) ]]

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

window.close()

実行コマンド
python multiline_text_color.py

〇実行結果

関連情報

PySimpleGUIで複数行入力フィールド要素のパディングを指定する

PySimpleGUIで複数行入力フィールド要素のフォント・フォントサイズを指定する

PySimpleGUIで複数行入力フィールド要素の幅・高さを指定する

0 件のコメント:

コメントを投稿