Click here to Skip to main content
15,919,341 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi i need some help from a pro

i did a coverflow with a datatemplate and observables collection

my xaml code

<c:CoverFlowControl.ItemTemplate>
<DataTemplate>
<Grid x:Name="covers">


<Image x:Name="image_covers" Source="{Binding Path=Picture, Mode=OneWay}" MouseLeftButtonDown="CoverFlow_MouseLeftButtonDown"
Height="300"
Stretch="UniformToFill"
/>


<TextBlock Text="{Binding Path=Name, Mode=OneWay}"
Foreground="Black"
HorizontalAlignment="Center"
VerticalAlignment="Bottom"
FontSize="12"
/>





</Grid>

</DataTemplate>
</c:CoverFlowControl.ItemTemplate>


AND MY BEHIND CODE
private ObservableCollection<Thumbnail> _thumbnails = new ObservableCollection<Thumbnail>();
//
// CONSTRUCTOR
//
public PReference()
{
InitializeComponent();

// Populate thumbnail collection




this._thumbnails.Add(
new Thumbnail
{
Name = "TEST",
Picture = "img/fo.PNG",






i want to know how i can get the property name of each news thumnails created

thx for the tips its really important, you can join me to <email removed="">
see you
Posted
Updated 18-Jan-10 4:07am
v2

1 solution

Can you elaborate your question please?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900