MainView.xaml 927 B

12345678910111213141516171819202122
  1. <p:ListDataPage xmlns="http://xamarin.com/schemas/2014/forms"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  3. xmlns:p="clr-namespace:Xamarin.Forms.Pages;assembly=Xamarin.Forms.Pages"
  4. x:Class="DataPages.MainView"
  5. StyleClass="Events"
  6. Title="Users">
  7. <p:ListDataPage.DataSource>
  8. <p:JsonDataSource Source="http://www.json-generator.com/api/json/get/clOPFoTImW?indent=2" />
  9. </p:ListDataPage.DataSource>
  10. <p:ListDataPage.DefaultItemTemplate>
  11. <DataTemplate>
  12. <ViewCell>
  13. <p:ListItemControl
  14. Title="{p:DataSourceBinding name}"
  15. Detail="{p:DataSourceBinding email}"
  16. ImageSource="{p:DataSourceBinding picture}"
  17. DataSource="{Binding Value}">
  18. </p:ListItemControl>
  19. </ViewCell>
  20. </DataTemplate>
  21. </p:ListDataPage.DefaultItemTemplate>
  22. </p:ListDataPage>