I want to convert corner to round as well as move text to center. I am currently using PysimpleGUI to make an appenter image description here
Asked
Active
Viewed 1,321 times
1 Answers
0
I think it's not possible right now to round corner in pysimplegui. but you can set title in center using title_location='n'.
import PySimpleGUI as sg
layout1 = [[sg.Text('temp text : ',pad=(3,3)),sg.Input('input field inside frame')]]
layout = [
[sg.Frame('title',layout=layout1,title_location='n',)]
]
window = sg.Window('frame ', layout,)
event, values = window.read()
window.close()

Bhargav Desai
- 941
- 1
- 5
- 17