This is a migrated thread and some comments may be shown as answers.

Slider control for the Coverflow Control...

1 Answer 49 Views
Calendar
This is a migrated thread and some comments may be shown as answers.
mark
Top achievements
Rank 1
mark asked on 29 Apr 2009, 09:37 PM
I am trying to add a Coverflow control that is fairly minimal in height(about 100 pixels) and I would like to still have the slider underneath.  I have it in a Stack Panel inside the second row of a Grid.  I can not see the Slider Control, but I think it is there, just further down where you can't see it.  Is there a property I can set to get it to be RIGHT under the images?

Thanks

mark

Version:  Silverlight 2, VS 2008, Demo Telerik Controls(we are evaluating)

thanks again.

1 Answer, 1 is accepted

Sort by
0
Miroslav Nedyalkov
Telerik team
answered on 30 Apr 2009, 02:27 PM
Hello mark,

Unfortunetly, there is no property that does this, but there is one that can help you adjust the position yourself. It's called CenterOffsetY. The problem is that just the images will go down if you change it and you will need to move the whole control up, too. You can achieve this by setting negative margin from the top side. The following example code shows what I mean:
<navigation:RadCoverFlow Margin="0,-42,0,0" x:Name="coverFlow" ItemMaxHeight="35" CenterOffsetY="40" 
        NavigationPanelVisibility="Visible" SelectedIndex="1" ReflectionRelativeHeight="0.5" RenderTransformOrigin="0.498,0.47"
    <Image Source="Image.jpg"/> 
    <Image Source="Image.jpg"/> 
    <Image Source="Image.jpg"/> 
</navigation:RadCoverFlow> 
I adjusted it with Blend. The CoverFlow is now exactly 100 pixels.

Kind regards,
Miroslav Nedyalkov
the Telerik team

Instantly find answers to your questions on the newTelerik Support Portal.
Check out the tipsfor optimizing your support resource searches.
Tags
Calendar
Asked by
mark
Top achievements
Rank 1
Answers by
Miroslav Nedyalkov
Telerik team
Share this question
or