net maui windows platform carouselview acting like collectionview how to fix it ?

Sami 966 Reputation points
2024-07-22T20:54:58.3766667+00:00
    <CarouselView  ItemsSource="{Binding Images}" >

        <CarouselView.ItemsLayout>

            <LinearItemsLayout

                            Orientation="Horizontal"

                        SnapPointsType="MandatorySingle"

                            SnapPointsAlignment="Center"/>

            

        </CarouselView.ItemsLayout>

        <CarouselView.ItemTemplate>

            <DataTemplate>

                <Image Source="{Binding .}" Aspect="AspectFit"/>

            </DataTemplate>

        </CarouselView.ItemTemplate>

    </CarouselView>

Windows Platform

when my mouse wheel is working that carouselview acting like as collectionview ...how to fix one by one image sliding as android or ios and sliding left and right buttons ? .. thanks

.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,914 questions
0 comments No comments
{count} votes

Accepted answer
  1. Leon Lu (Shanghai Wicresoft Co,.Ltd.) 79,546 Reputation points Microsoft Vendor
    2024-07-23T06:02:20.45+00:00

    Hello,

    This issue was reported in MAUI github repo CarouselView SnapPointsType not working on Windows #6356, please track on this issue in the MAUI Github repo.

    Best Regards,

    Leon Lu


    If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.