Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/littlewhitecloud/customtkintertitlebar
Defines your titlebar with tkinter 用tkinter定义你的标题栏
https://github.com/littlewhitecloud/customtkintertitlebar
blur c cplusplus cpp ctypes custom darkdetect details dll doc msvc pillow python titlebar tk tkinter user32 window windows windows10
Last synced: 3 days ago
JSON representation
Defines your titlebar with tkinter 用tkinter定义你的标题栏
- Host: GitHub
- URL: https://github.com/littlewhitecloud/customtkintertitlebar
- Owner: littlewhitecloud
- License: mit
- Created: 2022-12-17T07:50:57.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-10T15:21:40.000Z (13 days ago)
- Last Synced: 2025-01-20T19:09:42.224Z (3 days ago)
- Topics: blur, c, cplusplus, cpp, ctypes, custom, darkdetect, details, dll, doc, msvc, pillow, python, titlebar, tk, tkinter, user32, window, windows, windows10
- Language: Python
- Homepage: https://github.com/littlewhitecloud/CustomTkinterTitlebar
- Size: 975 KB
- Stars: 57
- Watchers: 0
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# _自定义标题栏_ _CustomTkinterTitlebar_
### 📃 *这是一个项目可以帮助你拥有一个自定义的标题栏!小组件可以被放到这个标题栏里面*
*This is a project can help you to have a custom titlebar! Widgets can add into titlebar!*
### 安装 Install
```console
pip install CustomTkinterTitlebar --user
```### Gallery
![image](https://github.com/user-attachments/assets/018c1315-fc94-4ee5-a2a5-396dfb48a471)repo: https://github.com/littlewhitecloud/Terminal
### 快速开始 Quick Start
```python
from customtitlebar import CTT
from tkinter import ttk
from sv_ttk import set_themeexample = CTT()
example.title("TitleBar")
example.geometry("1030x570")
set_theme("dark")
en = ttk.Entry(example.titlebar)
en.pack(fill = "y", expand = True, pady = 1)example.mainloop()
```![image](https://github.com/user-attachments/assets/c04deef7-a2d2-4fb1-be19-3632e4149f6c)
![image](https://github.com/user-attachments/assets/181b8bcf-85ec-4dbc-81b2-086c36bbed11)