[ Web Proxy ]
URL:
Viewing: https://Docs.PySimpleGUI.com/documentation/module/elements/sizegrip/ [Back]  [Original]

Sizegrip - PySimpleGUI Documentation
Skip to content
logo [logo]
PySimpleGUI Documentation
Sizegrip
www.PySimpleGUI.com
Main site, Licensing, FAQ
PySimpleGUI/PySimpleGUI
Scroll to active item logo [logo] PySimpleGUI Documentation

Sizegrip

Sizegrip call reference

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.

Back to top

Web Proxy Viewer  |  New URL  |  Original Page