python PySimpleGUIでInputの位置を設定する
pythonで、ライブラリPySimpleGUIを使用して、Inputの位置を設定するサンプルコードを記述してます。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
位置を設定
位置の設定は「pad」で指定することが可能です。
import PySimpleGUI as sg
sg.Input(default_text='テキスト', pad=((左からの位置,右からの位置),(上からの位置,下からの位置)) )
以下は、Inputの位置を指定したサンプルコードとなります。
import PySimpleGUI as sg
# ウィンドウのテーマ
sg.theme('BlueMono')
# 位置
left=100
right=10
top=50
bottom=50
# ウィンドウのレイアウト
layout = [
[sg.Text('Input')],
[sg.Input(default_text='テキスト', pad=((left,right),(top,bottom)), size=(10,10) )]
]
# ウィンドウオブジェクトの作成
window = sg.Window('title', layout, size=(300, 300))
# イベントのループ
while True:
# イベントの読み込み
event, values = window.read()
# ウィンドウの×ボタンクリックで終了
if event == sg.WIN_CLOSED:
break
# ウィンドウ終了処理
window.close()
実行結果
-
前の記事
php 文字列に変換する「strval」と「(string)」と「ダブルクォーテーション」のパフォーマンスを計測する 2021.11.24
-
次の記事
docker compose実行時にエラー「ERROR: for postgres Cannot start service postgres11: driver failed programming external connectivity on endpoint postgres」が発生した場合の対処法 2021.11.24
コメントを書く