Metadata-Version: 2.1
Name: CustomTkinterTitlebar
Version: 1.0.8.1
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.8
Classifier: Programming Language :: Python :: 3.9
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

# _自定义标题栏_ _CustomTkinterTitlebar_

### 📃 *这是一个项目可以帮助你拥有一个自定义的标题栏！小组件可以被放到这个标题栏里面* *This is a project can help you to have a custom titlebar! Widgets can add into titlebar!*

### 快速开始 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()
```

### 预览 View:
![image](https://github.com/littlewhitecloud/CustomTkinterTitlebar/assets/71159641/88c8b58e-95a1-42de-951f-384c214eb2c9)
![image](https://github.com/littlewhitecloud/CustomTkinterTitlebar/assets/71159641/77ab75fc-57bf-4ab6-8510-c94d87c4d4e7)

### 🎰 样例 Example:
https://github.com/littlewhitecloud/CustomTkinterTitlebar-Examples

感谢 @HuyHung1408花时间来在Windows11上测试它!
Thanks @HuyHung1408 for testing it on windows 11!
