How can I help you?
Path Support in Windows Forms Carousel
26 Apr 20211 minute to read
The Carousel control supports arranging items in the following paths:
- Default (elliptical)
- Orbital
- Oval
- Linear
Default
Items will be arranged in a normal elliptical path.
this.carousel1.CarouselPath = CarouselPath.Default;Me.carousel1.CarouselPath = CarouselPath.DefaultOrbital
Items will be arranged like an orbital curve.
this.carousel1.CarouselPath = CarouselPath.Orbital;Me.carousel1.CarouselPath = CarouselPath.OrbitalOval
Items will be arranged in an oval structure.
this.carousel1.CarouselPath = CarouselPath.Oval;Me.carousel1.CarouselPath = CarouselPath.OvalLinear
Items will be arranged in a linear structure.
this.carousel1.CarouselPath = CarouselPath.Linear;Me.carousel1.CarouselPath = CarouselPath.Linear