Skip to content

Instantly share code, notes, and snippets.

View JeffersGlass's full-sized avatar

Jeff Glass JeffersGlass

View GitHub Profile
@novel-yet-trivial
novel-yet-trivial / VerticalScrolledFrame.py
Last active April 15, 2024 18:15
A vertical scrolled frame for python tkinter that behaves like a normal Frame. Tested with python 2 and 3, windows and linux.
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
try:
import tkinter as tk
except ImportError:
import Tkinter as tk
class VerticalScrolledFrame:
"""