Advertisement
Ringermw

Untitled

Jan 19th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 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.OrdersPage"
  5. Title="Заказы"
  6. Padding="10,20,20,10">
  7.  
  8. <ListView ItemsSource="{Binding Orders}"
  9. HasUnevenRows="True" >
  10. <ListView.ItemTemplate>
  11. <DataTemplate>
  12. <ViewCell>
  13. <ViewCell.View>
  14. <StackLayout Orientation="Horizontal">
  15. <StackLayout>
  16. <Label Text="№ заказа:" />
  17. <Label Text="Дата:" />
  18. <Label Text="Наименование:" />
  19. <Label Text="Цена:" />
  20. <Label Text="Количество:" />
  21. <Label Text="Сумма:" />
  22. <Label Text="Статус:" />
  23. </StackLayout>
  24. <StackLayout>
  25. <Label Text="{Binding Number}" />
  26. <Label Text="{Binding Date}" />
  27. <Label Text="{Binding Name}" />
  28. <Label Text="{Binding Price}" />
  29. <Label Text="{Binding Quantity}" />
  30. <Label Text="{Binding Summ}" />
  31. <Label Text="{Binding Status}" />
  32. </StackLayout>
  33. </StackLayout>
  34. </ViewCell.View>
  35. </ViewCell>
  36. </DataTemplate>
  37. </ListView.ItemTemplate>
  38. </ListView>
  39. </ContentPage>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement