Update README.md

Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
David Rotermund 2024-01-07 19:31:45 +01:00 committed by GitHub
parent b20209991b
commit 9f4d457146
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,6 +21,43 @@ This is an optional topic!
```shell
```
### ttk.Spinbox
!(image_sb)[image_sb.png]
```python
# %%
import tkinter as tk
from tkinter import ttk
root = tk.Tk()
number_of_patches: int = 10
width_label: int = 20
width_element: int = 10
row_id: int = 0
column_id: int = 0
frame = ttk.LabelFrame(root, text="Spin Box")
frame.grid(row=row_id, column=column_id, sticky="nw", pady=5)
label_number_of_patches = ttk.Label(frame, text="SpinBox Text", width=width_label)
label_number_of_patches.grid(row=0, column=0, sticky="w")
spinbox_number_of_patches = ttk.Spinbox(
frame,
values=list(f"{x:d}" for x in range(1, 301)),
width=width_element,
)
spinbox_number_of_patches.grid(row=0, column=1, sticky="w")
spinbox_number_of_patches.set(number_of_patches)
root.mainloop()
del root
```
## [tk.Canvas](https://tkinter-docs.readthedocs.io/en/latest/widgets/canvas.html)
```python