Callbacks To Function Pysimplegui

[Solved] Callbacks To Function Pysimplegui | Actionscript - Code Explorer | yomemimo.com
Question : callbacks to function pysimplegui

Answered by : kiril-klein

import PySimpleGUI as sg
def func(message): print(message)
layout = [[sg.Button('1'), sg.Button('2'), sg.Exit()] ]
window = sg.Window('ORIGINAL').Layout(layout)
while True: # Event Loop event, values = window.Read() if event in (None, 'Exit'): break if event == '1': func('Pressed button 1') elif event == '2': func('Pressed button 2')
window.Close()

Source : https://stackoverflow.com/questions/55515627/pysimplegui-call-a-function-when-pressing-button | Last Update : Tue, 18 May 21

Answers related to callbacks to function pysimplegui

Code Explorer Popular Question For Actionscript