https://github.com/activestate/recipe-580793-tkinter-table-scroll
Tkinter with table scrollbars
https://github.com/activestate/recipe-580793-tkinter-table-scroll
learning learning-by-doing learning-python recipes snippets
Last synced: 8 months ago
JSON representation
Tkinter with table scrollbars
- Host: GitHub
- URL: https://github.com/activestate/recipe-580793-tkinter-table-scroll
- Owner: ActiveState
- License: mit
- Created: 2019-10-10T15:40:25.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-06T20:15:14.000Z (about 6 years ago)
- Last Synced: 2025-04-05T04:51:15.463Z (9 months ago)
- Topics: learning, learning-by-doing, learning-python, recipes, snippets
- Language: Python
- Homepage: https://code.activestate.com/recipes/580793/
- Size: 14.6 KB
- Stars: 2
- Watchers: 23
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
This repository covers the following recipe from code.activestate.com:
[TKINTER TABLE WITH SCROLLBARS
](https://code.activestate.com/recipes/580793/)
*Created by Miguel Martínez López on Tue, 2 May 2017*
I created here a tkinter table with scrollbar support. I use one of my other recipes for the mousewheel support and scrolling:
https://code.activestate.com/recipes/580640-scrolling-frame-with-mouse-wheel-support
## Usage
If you already have the [State Tool] installed you can simply run
```
state activate ActiveState-Recipes/recipe-580793-tkinter-table-scroll
```
If you do not have the [State Tool] installed you can use the following convenient one-liner.
Linux:
```
sh <(curl -q https://platform.activestate.com/dl/cli/install.sh) -n -f && state activate --path $HOME/ActiveState-Recipes/recipe-580793-tkinter-table-scroll ActiveState-Recipes/recipe-580793-tkinter-table-scroll
```
Windows:
```
powershell "Set-Item -Path Env:NOPROMPT_INSTALL -Value 'true'; IEX(New-Object Net.WebClient).downloadString('https://platform.activestate.com/dl/cli/install.ps1')" && state activate --path %APPDATA%/ActiveState-Recipes/recipe-580793-tkinter-table-scroll ActiveState-Recipes/recipe-580793-tkinter-table-scroll
```
macOS: not yet supported
[State Tool]: https://www.activestate.com/products/platform/state-tool/