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**:
|
||||
|
||||
```
|
||||
pip install customtkinter
|
||||
pip3 install customtkinter
|
||||
```
|
||||
PyPI: https://pypi.org/project/customtkinter/
|
||||
|
||||
|
@ -15,8 +15,8 @@ class CTkCheckBox(tkinter.Frame):
|
||||
hover_color=CTkColorManager.MAIN_HOVER,
|
||||
border_color=CTkColorManager.CHECKBOX_LINES,
|
||||
border_width=3,
|
||||
width=24,
|
||||
height=24,
|
||||
width=25,
|
||||
height=25,
|
||||
corner_radius=5,
|
||||
text_font=None,
|
||||
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)
|
||||
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 ============
|
||||
|
||||
self.frame_info = customtkinter.CTkFrame(master=self.frame_right,
|
||||
|
Loading…
Reference in New Issue
Block a user