my_ttkSizegrip = ttk.Sizegrip(root, **options)
my_ttkSizegrip.config()
class = Určuje triedu pre widget.
cursor = Definuje kurzor widgetu. Pozri možnosti CURSOR.
style = Slúži na zadanie vlastného štýlu widgetu.
takefocus = Určuje, či widget prijme zaostrenie počas klávesnice. Môže byť 0, 1.
from tkinter import *
from tkinter import ttk
root = Tk()
root.geometry('400x300')
root.title('Tkinter Demo')
statusbar = Label(root, text="Hello world", bd=1, relief=SUNKEN, anchor=W)
statusbar.pack(side=BOTTOM, fill=X)
frame = Frame(root)
frame.pack()
sg = ttk.Sizegrip(statusbar)
sg.pack(anchor=E)
root.mainloop()