-
Notifications
You must be signed in to change notification settings - Fork 4
CTkCarousel
Rudy edited this page Feb 26, 2024
·
1 revision
# CTkCarousel
my_carousel = CTkCarousel(master=app, img_list=my_images, width=400, height=400, img_radius=25)
my_carousel.grid(padx=20, pady=20)
Parameter | Description |
---|---|
master |
The parent widget |
img_list |
List of images to be displayed in the carousel |
width |
Width of the carousel |
height |
Height of the carousel |
img_radius |
Radius of the images in the carousel |
**kwargs |
Additional keyword arguments for the CTkFrame
|