Skip to content

Instantly share code, notes, and snippets.

View magnuskson's full-sized avatar

Magnus Karlsson magnuskson

View GitHub Profile
@novel-yet-trivial
novel-yet-trivial / DoubleScrolledFrame.py
Last active July 25, 2024 15:51
A frame for python tkinter with vertical and horizontal scrollbars that behaves like a normal Frame. Tested with python 2 and 3 on linux.
try:
import tkinter as tk
from tkinter import ttk
except ImportError:
import Tkinter as tk
import ttk
class DoubleScrolledFrame:
"""