2022年2月17日木曜日

PySimpleGUIで日付選択ポップアップの初期値を設定する

日付選択ポップアップの初期値を設定するには、以下のサンプルの様にpopup_get_dateでstart_mon/start_day/start_yearパラメータを指定します。
start_monで月、start_dayで日、start_yearで年を指定します。

サンプル実行手順

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

result = sg.popup_get_date(
  start_mon = 4,
  start_day = 1,
  start_year = 2000
)
print(result)

実行コマンド
python popup_get_date_start.py

〇実行結果

関連情報

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

0 件のコメント:

コメントを投稿