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
文字列の位置
文字列の位置は「justification」を使用することで調整可能です。
import PySimpleGUI as sg
# 左寄せ
sg.Input(default_text='テキスト', justification='left' )
# 中央寄せ
sg.Input(default_text='テキスト', justification='center' )
# 右寄せ
sg.Input(default_text='テキスト', justification='right' )
以下は、Inputを読み取り専用に設定したサンプルコードとなります。
import PySimpleGUI as sg
# ウィンドウのテーマ
sg.theme('BlueMono')
# ウィンドウのレイアウト
layout = [
[sg.Text('Input')],
[sg.Input(default_text='テキスト', justification='left' )],
[sg.Input(default_text='テキスト', justification='center' )],
[sg.Input(default_text='テキスト', justification='right' )],
]
# ウィンドウオブジェクトの作成
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.23
-
次の記事
コマンドプロンプト historyを確認する 2021.11.23
コメントを書く