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 months 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 (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-10T15:21:40.000Z (6 months ago)
- Last Synced: 2025-04-05T22:05:00.994Z (3 months 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: 60
- 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
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()
```
