Advertisement
Guest User

MainPage.Xaml

a guest
Jul 11th, 2013
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.57 KB | None | 0 0
  1. <ListBox Name="listBoxPopular" ItemsSource="{Binding PopVideos Mode=OneWay}">
  2.                     <ListBox.ItemTemplate>
  3.                         <DataTemplate>
  4.                             <StackPanel>
  5.                                 <Image Name="imagem" Source="{Binding Path=Url}"/>
  6.                                 <TextBlock  Text="{Binding Path=Titulo}" Tap="HyperlinkButton_Tap"  FontSize="30" Foreground="#FF159DDE" />
  7.                             </StackPanel>
  8.                         </DataTemplate>
  9.                     </ListBox.ItemTemplate>
  10.                 </ListBox>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement