Skip to content

Commit 403c469

Browse files
authored
Update README.md
1 parent eecee2b commit 403c469

File tree

1 file changed

+39
-1
lines changed

1 file changed

+39
-1
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,27 +35,63 @@ CustomTkinter Snippets is a Visual Studio Code extension that provides a compreh
3535

3636
| Prefix | Snippet Description |
3737
| -------------------- | -------------------------------------------------------------------------------- |
38-
| `ctkwindow` | Inserts a snippet to create base CustomTkinter window |
3938
| `ctkbutton` | Inserts a snippet for button widget |
39+
| `ctkbutton.grid` | Inserts a snippet for placing a button widget using grid layout |
40+
| `ctkbutton.pack` | Inserts a snippet for placing a button widget using pack layout |
4041
| `ctkcheckbox` | Inserts a snippet for checkbox widget |
42+
| `ctkcheckbox.grid` | Inserts a snippet for placing a checkbox widget using grid layout |
43+
| `ctkcheckbox.pack` | Inserts a snippet for placing a checkbox widget using pack layout |
4144
| `ctkcombobox` | Inserts a snippet for combo box widget |
45+
| `ctkcombobox.grid` | Inserts a snippet for placing a combo box widget using grid layout |
46+
| `ctkcombobox.pack` | Inserts a snippet for placing a combo box widget using pack layout |
4247
| `ctkentry` | Inserts a snippet for entry field widget |
48+
| `ctkentry.grid` | Inserts a snippet for placing an entry field widget using grid layout |
49+
| `ctkentry.pack` | Inserts a snippet for placing an entry field widget using pack layout |
4350
| `ctkframe` | Inserts a snippet for frame widget |
51+
| `ctkframe.grid` | Inserts a snippet for placing a frame widget using grid layout |
52+
| `ctkframe.pack` | Inserts a snippet for placing a frame widget using pack layout |
4453
| `ctklabel` | Inserts a snippet for label widget |
54+
| `ctklabel.grid` | Inserts a snippet for placing a label widget using grid layout |
55+
| `ctklabel.pack` | Inserts a snippet for placing a label widget using pack layout |
4556
| `ctkoptionmenu` | Inserts a snippet for option menu widget |
57+
| `ctkoptionmenu.grid` | Inserts a snippet for placing an option menu widget using grid layout |
58+
| `ctkoptionmenu.pack` | Inserts a snippet for placing an option menu widget using pack layout |
4659
| `ctkprogressbar` | Inserts a snippet for progress bar widget |
60+
| `ctkprogressbar.grid`| Inserts a snippet for placing a progress bar widget using grid layout |
61+
| `ctkprogressbar.pack`| Inserts a snippet for placing a progress bar widget using pack layout |
4762
| `ctkradiobutton` | Inserts a snippet for radio button widget |
63+
| `ctkradiobutton.grid`| Inserts a snippet for placing a radio button widget using grid layout |
64+
| `ctkradiobutton.pack`| Inserts a snippet for placing a radio button widget using pack layout |
4865
| `ctkscrollableframe` | Inserts a snippet for scrollable frame widget |
66+
| `ctkscrollableframe.grid`| Inserts a snippet for placing a scrollable frame widget using grid layout |
67+
| `ctkscrollableframe.pack`| Inserts a snippet for placing a scrollable frame widget using pack layout |
4968
| `ctksegmentedbutton` | Inserts a snippet for segmented button widget |
69+
| `ctksegmentedbutton.grid`| Inserts a snippet for placing a segmented button widget using grid layout |
70+
| `ctksegmentedbutton.pack`| Inserts a snippet for placing a segmented button widget using pack layout |
5071
| `ctkslider` | Inserts a snippet for slider widget |
72+
| `ctkslider.grid` | Inserts a snippet for placing a slider widget using grid layout |
73+
| `ctkslider.pack` | Inserts a snippet for placing a slider widget using pack layout |
5174
| `ctkswitch` | Inserts a snippet for switch widget |
75+
| `ctkswitch.grid` | Inserts a snippet for placing a switch widget using grid layout |
76+
| `ctkswitch.pack` | Inserts a snippet for placing a switch widget using pack layout |
5277
| `ctktabview` | Inserts a snippet for tab view widget |
78+
| `ctktabview.grid` | Inserts a snippet for placing a tab view widget using grid layout |
79+
| `ctktabview.pack` | Inserts a snippet for placing a tab view widget using pack layout |
5380
| `ctktextbox` | Inserts a snippet for textbox widget |
81+
| `ctktextbox.grid` | Inserts a snippet for placing a textbox widget using grid layout |
82+
| `ctktextbox.pack` | Inserts a snippet for placing a textbox widget using pack layout |
5483
| `ctkscrollbar` | Inserts a snippet for scrollbar widget |
84+
| `ctkscrollbar.grid` | Inserts a snippet for placing a scrollbar widget using grid layout |
85+
| `ctkscrollbar.pack` | Inserts a snippet for placing a scrollbar widget using pack layout |
5586
| `ctkimage` | Inserts a snippet for importing images using [Pillow](https://python-pillow.org) |
5687
| `ctkfont` | Inserts a snippet for importing external font families |
5788
| `ctktoplevel` | Inserts a snippet to create secondary top-level CustomTkinter window |
5889
| `ctkinputdialog` | Inserts a snippet for input dialog widget |
90+
| `ctkinputdialog.grid`| Inserts a snippet for placing an input dialog widget using grid layout |
91+
| `ctkinputdialog.pack`| Inserts a snippet for placing an input dialog widget using pack layout |
92+
| `ctkvideo` | Inserts a snippet for embedding a video using CustomTkinter |
93+
| `ctkvideo.grid` | Inserts a snippet for placing a video widget using grid layout |
94+
| `ctkvideo.pack` | Inserts a snippet for placing a video widget using pack layout |
5995

6096
### Appearance and Theme
6197

@@ -77,6 +113,8 @@ CustomTkinter Snippets is a Visual Studio Code extension that provides a compreh
77113
| `scalingwindow` | Inserts a snippet for setting Window Scaling |
78114
| `dpideactivate` | Inserts a snippet that deactivates DPI Awareness |
79115

116+
117+
80118
## Requirements
81119

82120
- Visual Studio Code

0 commit comments

Comments
 (0)