mirror of
https://github.com/TomSchimansky/CustomTkinter.git
synced 2023-08-10 21:13:13 +03:00
updated documentation images
This commit is contained in:
parent
ccd1040329
commit
b4f8166940
@ -21,7 +21,7 @@ To use CustomTkinter, just place the /customtkinter folder from this repository
|
|||||||
next to your program, or **install the module with pip**:
|
next to your program, or **install the module with pip**:
|
||||||
|
|
||||||
```
|
```
|
||||||
pip install customtkinter
|
pip3 install customtkinter
|
||||||
```
|
```
|
||||||
PyPI: https://pypi.org/project/customtkinter/
|
PyPI: https://pypi.org/project/customtkinter/
|
||||||
|
|
||||||
|
@ -15,8 +15,8 @@ class CTkCheckBox(tkinter.Frame):
|
|||||||
hover_color=CTkColorManager.MAIN_HOVER,
|
hover_color=CTkColorManager.MAIN_HOVER,
|
||||||
border_color=CTkColorManager.CHECKBOX_LINES,
|
border_color=CTkColorManager.CHECKBOX_LINES,
|
||||||
border_width=3,
|
border_width=3,
|
||||||
width=24,
|
width=25,
|
||||||
height=24,
|
height=25,
|
||||||
corner_radius=5,
|
corner_radius=5,
|
||||||
text_font=None,
|
text_font=None,
|
||||||
text_color=CTkColorManager.TEXT,
|
text_color=CTkColorManager.TEXT,
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 281 KiB After Width: | Height: | Size: 659 KiB |
Binary file not shown.
Before Width: | Height: | Size: 264 KiB After Width: | Height: | Size: 673 KiB |
@ -62,6 +62,10 @@ class App(tkinter.Tk):
|
|||||||
corner_radius=8)
|
corner_radius=8)
|
||||||
self.button_3.place(relx=0.5, y=150, anchor=tkinter.CENTER)
|
self.button_3.place(relx=0.5, y=150, anchor=tkinter.CENTER)
|
||||||
|
|
||||||
|
self.check_box_1 = customtkinter.CTkCheckBox(master=self.frame_left,
|
||||||
|
text="CTkCheckBox")
|
||||||
|
self.check_box_1.place(relx=0.5, rely=0.92, anchor=tkinter.CENTER)
|
||||||
|
|
||||||
# ============ frame_right ============
|
# ============ frame_right ============
|
||||||
|
|
||||||
self.frame_info = customtkinter.CTkFrame(master=self.frame_right,
|
self.frame_info = customtkinter.CTkFrame(master=self.frame_right,
|
||||||
|
8
setup.py
8
setup.py
@ -1,6 +1,14 @@
|
|||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import os
|
import os
|
||||||
|
|
||||||
|
# Update in pypi:
|
||||||
|
#
|
||||||
|
# 1. delete old /dist
|
||||||
|
# 2. python3 -m pip install --upgrade build
|
||||||
|
# 3. python3 -m build
|
||||||
|
# 4. python3 -m twine upload dist/*
|
||||||
|
#
|
||||||
|
|
||||||
|
|
||||||
def read(filename):
|
def read(filename):
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user