PySimpleGUI/Demo_Calendar.py

11 lines
317 B
Python
Raw Normal View History

import PySimpleGUI as sg
layout = [[sg.T('Calendar Test')],
[sg.In('', size=(20,1), key='input')],
[sg.CalendarButton('Choose Date', target='input', key='date')],
[sg.Ok(key=1)]]
form = sg.FlexForm('Calendar', grab_anywhere=False)
b,v = form.LayoutAndRead(layout)
2018-09-22 03:29:50 +00:00
sg.Popup(v['input'])