https://github.com/akascape/ctkxyframe
A better scrollable frame for customtkinter.
https://github.com/akascape/ctkxyframe
customtkinter tkinter tkinter-gui tkinter-python
Last synced: about 1 month ago
JSON representation
A better scrollable frame for customtkinter.
- Host: GitHub
- URL: https://github.com/akascape/ctkxyframe
- Owner: Akascape
- License: mit
- Created: 2023-07-03T12:45:34.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-25T16:24:33.000Z (over 1 year ago)
- Last Synced: 2025-03-26T08:13:37.069Z (8 months ago)
- Topics: customtkinter, tkinter, tkinter-gui, tkinter-python
- Language: Python
- Homepage:
- Size: 30.3 KB
- Stars: 60
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CTkXYFrame
**A better scrollable frame for customtkinter!**

## Features
- Both x and y scrollability at the same time
- Proper mousewheel bindings
- Dynamic scrollbars, hides automatically when reaches full size
- Full customisability just like ctkscrollable frame
## Installation
### [
](https://github.com/Akascape/CTkXYFrame/archive/refs/heads/main.zip)
**Download the source code, paste the `CTkXYFrame` folder in the directory where your program is present.**
## Usage
```python
import customtkinter
from CTkXYFrame import *
root = customtkinter.CTk()
xy_frame = CTkXYFrame(root)
xy_frame.pack()
root.mainloop()
```
**All other methods and arguments of CTkScrollableFrame can be used with CTkXYFrame**