Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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定义你的标题栏

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_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)