add font rendering to button, finished

This commit is contained in:
TomSchimansky
2022-02-22 22:38:40 +01:00
parent 5bbcb1c617
commit 9996e51c1a
22 changed files with 348 additions and 306 deletions

View File

@@ -195,6 +195,18 @@ root_tk.configure(bg_color=(<light-mode color>, <dark-mode color>))
```
</details>
### CTkToplevel
CTkToplevel works exactly like the `Tkinter.Toplevel`, and should be used to create more than one window.
<details>
<summary>Show all arguments and methods:</summary>
argument | value
--- | ---
bg_color or bg | tuple: (light_color, dark_color) or single color
</details>
### CTkFrame
Example Code:
```python
@@ -376,6 +388,7 @@ text_color | text color, tuple: (light_color, dark_color) or single color
text_font | button text font, tuple: (font_name, size)
hover | enable/disable hover effect: True, False
state | tkinter.NORMAL (standard) or tkinter.DISABLED (not clickable, darker color)
command | function will be called when the checkbox is clicked
CTkCheckBox Methods:
```python