dbpp.widgets package: GuiBaseClass - AutoScrollbar - Balloon - Ctext - LabEntry - RoText - Scrolled - SqlText - StatusBar - TableView - TextMixins - XTableView - XTreeView
dbpp.kroki - dbpp.kroki.KrokiEncoder - dbpp.utils - dbpp.utils.SqlUtils -
apps: dbpp.peditor
Add easily ttk.Scrollbar(s) to ttk-widgets.
This is a convenience function to add scrollbars which can optionally autohide to an existing widget which is placed already within a tk.Frame or a ttk.Frame.
Except for the Scrolled function there is no function available for the Scrolled module. Simply provide the widget which should get the two scrollbars. The widget should be placed in its own frame before. Don't pack or grid the widget itself, just pack or grid the parent frame.
Examples:
>>> import tkinter as tk
>>> import tkinter.ttk as ttk
>>> from dbpp.widgets.scrolled import Scrolled
>>> root=tk.Tk()
>>> nframe=ttk.Frame(root)
>>> text=tk.Text(nframe,wrap='none')
>>> for i in range(0,30):
... text.insert('end','Hello World! In a very long line!\n')
>>> Scrolled(text)
>>> nframe.pack(side='top',fill='both',expand=True)
>>> root.mainloop()
Copyright: @ Detlef Groth, 2023, University of Potsdam, Germany
See also: GuiBaseClass, AutoScrollbar
License: MIT
Scrolled(widget)
Add autohide scrollbars to your widgets.
Args:
widget
(ttk.Widget): the widget which should get scrollbars, must be placed within a frame already
This file was automatically generated via lazydocs.