Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
255
Questions while using xamDataCarousel
posted

Hi, I need your help again!

Thank you  first.

Here is a xamDataCarousel image.

And I have three questions:

1. How to hide the Navigate Button? And then it would be something like the Mac OS.

2.How can I change the Item's state while it is selected, like make it larger?

3.While the first or the last item is selected, how to navigate it to the center of the carousel  automatically?Or is there any way to navigate items by dragging?

Any suggestion would be fine.

Thank you!

 

Parents
No Data
Reply
  • 138253
    Offline posted

    Hello,

     

    It has been a while since you have made your post, in case you still need support I will be glad to assist you further. I suppose the other community members can benefit from this answer as well. So I have been looking through your post and I suggest you set the IsNavigatorVisible property of the CarouselViewSettings to False in order to hide the Navigate Buttons. As for your second question you can use a scale transform. You can try something like this:

     

                        <igWindows:CarouselViewSettings.ItemPathRenderPen>
                            <Pen Brush="#FF000000" Thickness="0"/>
                        </igWindows:CarouselViewSettings.ItemPathRenderPen>
                        <igWindows:CarouselViewSettings.OpacityEffectStops>
                            <igWindows:OpacityEffectStopCollection>
                                <igWindows:OpacityEffectStop Value="0"/>
                                <igWindows:OpacityEffectStop Offset="0.1"/>
                                <igWindows:OpacityEffectStop Offset="0.6" Value="1"/>
                                <igWindows:OpacityEffectStop Offset="1" Value="0.1"/>
                            </igWindows:OpacityEffectStopCollection>
                        </igWindows:CarouselViewSettings.OpacityEffectStops>
                        <igWindows:CarouselViewSettings.ScalingEffectStops>
                            <igWindows:ScalingEffectStopCollection>
                                <igWindows:ScalingEffectStop Value="0"/>
                                <igWindows:ScalingEffectStop Offset="0.45" Value="0.8"/>
                                <igWindows:ScalingEffectStop Offset="0.55" Value="2"/>
                                <igWindows:ScalingEffectStop Offset="0.65" Value="0.8"/>
                                <igWindows:ScalingEffectStop Offset="1" Value="0.2"/>
                            </igWindows:ScalingEffectStopCollection>
                        </igWindows:CarouselViewSettings.ScalingEffectStops>
    

     

    And you can read more about Drag and Drop here:

     

    http://help.infragistics.com/NetAdvantage/WPF/2011.1/CLR4.0/?page=Infragistics_Drag_and_Drop_Framework.html

     

    Feel free to write me if you have any other questions.

Children
No Data