How Do I input site Carousel onto a sidebar?

Mark Mather 1 Reputation point
2020-07-19T05:44:30.847+00:00

I'm creating a sidebar for my project. which is done, I want it to display open web site tabs12857-mmjj.png

Developer technologies | Universal Windows Platform (UWP)
{count} votes

1 answer

Sort by: Most helpful
  1. Mark Mather 1 Reputation point
    2020-08-07T02:29:19.847+00:00

    Yes like that sample. here is a part of code

    <Grid x:Name="sidepanel"  Width="300" HorizontalAlignment="Left" Margin="0,-1,0,135">
                <Grid.RenderTransform>
                    <TranslateTransform x:Name="myTransform" X="-500" Y="100" />
                </Grid.RenderTransform>
    
                <controls:Carousel InvertPositive="True" ItemDepth="300"
                       ItemMargin="0" ItemRotationX="0"
                       ItemRotationY="45" ItemRotationZ="0"
                       Orientation="Horizontal">
                    <controls:Carousel.EasingFunction>
                        <CubicEase EasingMode="EaseOut" />
                    </controls:Carousel.EasingFunction>
    
                    <controls:Carousel.ItemTemplate>
                        <DataTemplate>
                            <!-- Carousel content -->
                        </DataTemplate>
                    </controls:Carousel.ItemTemplate>
                </controls:Carousel>
    

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.