PySimpleGUI/Demo_Calendar.py

11 lines
319 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)]]
window = sg.Window('Calendar', grab_anywhere=False).Layout(layout)
b,v = window.Read()
2018-09-22 03:29:50 +00:00
sg.Popup(v['input'])