2022年1月28日金曜日

PySimpleGUIでカラム要素内の要素の水平方向位置揃えを指定する

PySimpleGUIでカラム要素内の要素の水平方向位置揃えを指定するには、element_justificationパラメータで指定します。right,left,centerが指定できます。

サンプル実行手順

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

sg.theme('SystemDefault')
columns = sg.Column(
  [[sg.Text("Col1"), sg.Text("Col2"), sg.Text("Col3")]],
  element_justification='right',
  expand_x=True, expand_y=True,
  background_color='#7799dd'
)
layout = [[columns]]

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

実行コマンド
python column_element_justification.py

〇実行結果

関連情報

PySimpleGUIでカラム要素のサイズ設定とスクロール可否を設定する

PySimpleGUIでカラム要素をスペースに合わせて広がるように指定する

PySimpleGUIでカラム要素の背景色を指定する

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

0 件のコメント:

コメントを投稿