Metadata-Version: 2.4
Name: CustomTkinterTitlebar
Version: 1.0.8.7
Summary: This is a 📚project can help you to have a custom titlebar! 这是一个可以创建自定义标题栏的📚项目
Home-page: https://github.com/littlewhitecloud/CustomTkinterTitlebar
Author: littlewhitecloud
Author-email: q1141926647@163.com
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: summary

# _自定义标题栏_ _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_theme

example = 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)
