Skip to content

Instantly share code, notes, and snippets.

View Anenokil's full-sized avatar
☢️
active

Anenokil Anenokil

☢️
active
  • 14:22 (UTC +03:00)
View GitHub Profile
@mp035
mp035 / tk_scroll_demo.py
Last active June 19, 2024 08:19
A simple scrollable frame class for tkinter, including example usage.
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
import tkinter as tk
import platform
# ************************
# Scrollable Frame Class
# ************************