Sizegrip
Places a "Sizegrip", a triangle-shaped graphic, on the bottom right corner of a window. A Sizegrip
makes your window easier to resize. The OS change the cursor to a resize cursor over a larger area of your window if you include a Sizegrip
. Be sure and place this element on the last row of your layout.
layout = [[sg.Button('My first Button!'), sg.Checkbox('My first Checkbox!')],
[sg.VPush()],
[sg.Push(), sg.Sizegrip()]]
Events
No events are generated directly by a Sizegrip
element. You can use a parameter when creating your window that will cause window resized events to be gnerated. See the Window
call reference for more details.
Values Dictionary
No values dictionary entry will be made.