Advertisement
Guest User

Untitled

a guest
May 11th, 2021
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. <StackLayout BindableLayout.ItemsSource="{Binding ServicesCollection}">
  2. <BindableLayout.ItemTemplate>
  3. <DataTemplate>
  4. <StackLayout Orientation="Horizontal">
  5. <StackLayout HorizontalOptions="Start" BindableLayout.ItemsSource="{Binding Path=.}">
  6. <BindableLayout.ItemTemplate>
  7. <DataTemplate>
  8. <Label TextColor="Black" FontSize="26" VerticalOptions="Center" Text="{Binding Path=Title}" WidthRequest="320"/>
  9. </DataTemplate>
  10. </BindableLayout.ItemTemplate>
  11. </StackLayout>
  12. <StackLayout Orientation="Horizontal" BindableLayout.ItemsSource="{Binding ServiceTitles}">
  13. <BindableLayout.ItemTemplate>
  14. <DataTemplate>
  15. <Grid >
  16. <Grid.ColumnDefinitions>
  17. <ColumnDefinition Width="220"/>
  18. <ColumnDefinition Width="auto"/>
  19. </Grid.ColumnDefinitions>
  20. <Label TextColor="White" FontSize="25" Text="{Binding Path=Title}"/>
  21. <Label TextColor="White" Grid.Column="1" FontSize="25" Text="{Binding Path=Price,StringFormat='{0:### ### ###} сум'}"/>
  22. </Grid>
  23. </DataTemplate>
  24. </BindableLayout.ItemTemplate>
  25. </StackLayout>
  26. </StackLayout>
  27. </DataTemplate>
  28. </BindableLayout.ItemTemplate>
  29. </StackLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement