This question is locked. New answers and comments are not allowed.
Dharmesh Trivedi
Top achievements
Rank 1
Dharmesh Trivedi
asked on 14 Dec 2009, 06:29 PM
Can you please provide code for this example.(http://demos.telerik.com/silverlight/myalbums/)
Thank You,
Thank You,
5 Answers, 1 is accepted
0
Hello Dharmesh Trivedi,
Telerik.Windows.Controls.Navigation.dll.
Regards,
Rosi
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
You can find the download files under your accounts at:
- For Licensed users: http://www.telerik.com/account/downloads.aspx
- For Trial Users: http://www.telerik.com/account/free-trials.aspx
The following dll-s should be added to the demo to run as expected:
Telerik.Windows.Controls.dll.Telerik.Windows.Controls.Navigation.dll.
Regards,
Rosi
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Dharmesh Trivedi
Top achievements
Rank 1
answered on 15 Dec 2009, 03:32 PM
can you please tell me which file i need to download. thank you.
0
Hello Dharmesh Trivedi,
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Please log in and follow the link below:
http://www.telerik.com/account/free-trials/single-trial.aspx?pmvid=2123&pid=0
All the best,
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Dharmesh Trivedi
Top achievements
Rank 1
answered on 17 Dec 2009, 06:14 PM
in this example how tileview and coverflow are related? . seems like master detail is going on however can't seems to figure it out how you did it..
in my case i have master a different data source and details is different data source
in my case i have master a different data source and details is different data source
0
Hi Dharmesh ,
The ContentTemplate of TileView control is changed to contain a RadFluidContentControl. RadFluidControl has two templates for LargeContent ans SmallContent. Which of these templates will be applied depends on the size of tileview item. In the Large content there is palced a Coverflow control.
This forum thread explains how some properties of RadFluidContentControl work in more details.
Hope this helps.
Regards,
Rosi
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
The ContentTemplate of TileView control is changed to contain a RadFluidContentControl. RadFluidControl has two templates for LargeContent ans SmallContent. Which of these templates will be applied depends on the size of tileview item. In the Large content there is palced a Coverflow control.
This forum thread explains how some properties of RadFluidContentControl work in more details.
<telerikNavigation:RadTileView Margin="5" x:Name="AlbumTileView" MinimizedColumnWidth="220" MaximizeMode="One" IsItemsAnimationEnabled="True"> <telerikNavigation:RadTileView.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding Title}" Style="{StaticResource DetailsStyle}" /> </DataTemplate> </telerikNavigation:RadTileView.ItemTemplate> <telerikNavigation:RadTileView.ContentTemplate> <DataTemplate> <telerik:RadFluidContentControl SmallToNormalThreshold="291, 130" NormalToSmallThreshold="292, 131" NormalToLargeThreshold="230, 250" LargeToNormalThreshold="231, 251"> <telerik:RadFluidContentControl.SmallContent> <StackPanel Orientation="Horizontal"> <Image Source="{Binding AlbumImage}" Height="32" Width="32" Margin="10" VerticalAlignment="Bottom"/> <TextBlock Text="{Binding ImagesCount}" FontStyle="Italic" Margin="5,15,0,15" VerticalAlignment="Bottom"/> <TextBlock Text="photos" Margin="2,15,15,15" FontStyle="Italic" VerticalAlignment="Bottom"/> </StackPanel> </telerik:RadFluidContentControl.SmallContent> <telerik:RadFluidContentControl.LargeContent> <Grid> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition/> <RowDefinition/> <RowDefinition /> </Grid.RowDefinitions> <telerikNavigation:RadCoverFlow CameraViewpoint="Center" ItemScale="0.7" DistanceFromSelectedItem="20" Margin="10,50,10,0" DistanceBetweenItems="50" Grid.Row="0" Grid.RowSpan="4" Height="450" x:Name="AlbumCoverFlow" ItemsSource="{Binding Images}" Background="Transparent"> <telerikNavigation:RadCoverFlow.ItemTemplate> <DataTemplate> <Image Source="{Binding ImageSource}" Width="340" Height="200" Stretch="Uniform" telerikNavigation:RadCoverFlow.EnableLoadNotification="True" /> </DataTemplate> </telerikNavigation:RadCoverFlow.ItemTemplate> </telerikNavigation:RadCoverFlow> <Border Grid.Row="2" HorizontalAlignment="Center" VerticalAlignment="Bottom"> <Border.Background> <LinearGradientBrush EndPoint="1,0.5" StartPoint="0,0.5"> <GradientStop Color="White" Offset="0.504"/> <GradientStop Offset="1" Color="#19FFFFFF"/> <GradientStop Color="#19FFFFFF"/> </LinearGradientBrush> </Border.Background> <Border.OpacityMask> <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0"> <GradientStop Color="White" Offset="0.876"/> <GradientStop Offset="1"/> <GradientStop Color="#00000000"/> <GradientStop Color="White" Offset="0.124"/> </LinearGradientBrush> </Border.OpacityMask> <StackPanel Margin="10"> <TextBlock Text="{Binding SelectedItem.Title, ElementName=AlbumCoverFlow}" FontSize="16" Height="20" HorizontalAlignment="Center" VerticalAlignment="Center" Style="{StaticResource DetailsStyle}"/> <TextBlock Grid.Row="0" Text="{Binding SelectedItem.DateCreated, ElementName=AlbumCoverFlow,Converter={StaticResource DateTimeToStringConverter}}" FontStyle="Italic" HorizontalAlignment="Center" Height="20" VerticalAlignment="Bottom" Style="{StaticResource DetailsStyle}"/> </StackPanel> </Border> </Grid> </telerik:RadFluidContentControl.LargeContent> <telerik:RadFluidContentControl.Content> <Border/> </telerik:RadFluidContentControl.Content> </telerik:RadFluidContentControl> </DataTemplate> </telerikNavigation:RadTileView.ContentTemplate> </telerikNavigation:RadTileView>Hope this helps.
Regards,
Rosi
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.