Python PySimpleGUIを使ってラジオボタンの幅と高さを設定する

環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)

構文
1.ラジオボタンの幅と高さを設定
import PySimpleGUI as cft
cft.Radio(text=’radio’, size=(幅,高さ))

2.ウィンドウオブジェクトの作成
cft.Window('タイトルの情報e’, layout, size=(幅, 高さ))

使用例

import PySimpleGUI as cft

# ウィンドウのテーマ
cft.theme('Dark Brown')

# 幅と高さを設定
width = 30
height = 30

# ウィンドウのレイアウト
layout = [
        [cft.Radio(text='tokyo', group_id='1', size=(width,height))],
        [cft.Radio(text='oosaka', group_id='1', size=(width,height))]
    ]

# ウィンドウオブジェクトの作成
window = cft.Window('テスト', layout, size=(250, 250))

# イベントのループ
while True:
    # イベントの読み込み
    event, values = window.read()
    # ウィンドウの×ボタンクリックで終了
    if event == cft.WIN_CLOSED:
        break

# ウィンドウ終了処理
window.close()

 

Python

Posted by arkgame