2022年1月27日木曜日

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

PySimpleGUIでカラム要素をスペースに合わせて広がるように指定するには、Columnのexpand_x(水平方向)、expand_y(垂直方向)パラメータで指定します。

サンプル実行手順

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

sg.theme('SystemDefault')
columns = sg.Column(
  [[sg.Text("Col1"), sg.Text("Col2"), sg.Text("Col3")]],
  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

window.close()

実行コマンド
python column_expand.py

〇実行結果

関連情報

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

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

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

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

0 件のコメント:

コメントを投稿