Advertisement
Ringermw

Untitled

Jan 19th, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. x:Class="XamarinFormsData.Views.ProductsPage"
  5. Title="Товары" >
  6. <ContentPage.ToolbarItems>
  7. <ToolbarItem Text="Меню"
  8. Command="{Binding OpenMenu}" />
  9. </ContentPage.ToolbarItems>
  10. <ListView ItemsSource="{Binding Products}"
  11. HasUnevenRows="True"
  12. x:Name="listview">
  13. <ListView.ItemTemplate>
  14. <DataTemplate>
  15. <ViewCell>
  16. <ViewCell.View>
  17. <StackLayout Orientation="Horizontal">
  18. <Image Source="{Binding Image}"
  19. HeightRequest="100"
  20. WidthRequest="100" />
  21. <StackLayout>
  22. <Label Text="{Binding ProductName}"
  23. FontSize="Medium" />
  24. <Label Text="{Binding Price}"
  25. FontSize="Small" />
  26. </StackLayout>
  27. </StackLayout>
  28. </ViewCell.View>
  29. </ViewCell>
  30. </DataTemplate>
  31. </ListView.ItemTemplate>
  32. </ListView>
  33. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement