<toolkit:LongListSelector>
<toolkit:LongListSelector.ItemTemplate>
<DataTemplate>                  
<StackPanel Orientation="Horizontal">
<TextBlock Text="{Binding Name}" FontSize="22" TextWrapping="Wrap" />
<TextBlock Name="Info" FontSize="18" TextWrapping="Wrap" />
</StackPanel>
</DataTemplate>                
</toolkit:LongListSelector.ItemTemplate>
</toolkit:LongListSelector>

I have the above LongListSelector which selects the "Name"(Binded in the first Textblock )values from a list. I also wanted to additional text to it,for which i created one more Textblock below that. I couldn't add the text to the second TextBlock like(Info.Text="HI") because it is inside the LonglistSelector

How to give the values to the second Textblock??

Thanks

link|improve this question

45% accept rate
feedback

1 Answer

Do you mean Info is a property on the DataContext of the page and not on the current item where Name is?

If so, you can use a DataContextProxy to get to the data outside of the list item. If not, you'll have to be more clear on what you mean.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.