More "Demo Program Catchup" updates. Working through them bit by bit.....

This commit is contained in:
PySimpleGUI 2022-02-22 05:20:03 -05:00
parent 1eb653d910
commit f1e0c7d03f
9 changed files with 87 additions and 57 deletions

View file

@ -10,9 +10,4 @@ import PySimpleGUI as sg
Copyright 2021 PySimpleGUI
"""
sg.Window('Sudoku', [[sg.Frame('', [[sg.Input(justification='r', size=(3,1))
for col in range(3)]
for row in range(3)])
for frame_col in range(3)]
for frame_row in range(3)],
use_custom_titlebar=True).read()
sg.Window('Sudoku', [[sg.Frame('', [[sg.Input(justification='r', size=(3,1)) for col in range(3)] for row in range(3)]) for frame_col in range(3)] for frame_row in range(3)], use_custom_titlebar=True).read()