Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <StackLayout BindableLayout.ItemsSource="{Binding ServicesCollection}">
- <BindableLayout.ItemTemplate>
- <DataTemplate>
- <StackLayout Orientation="Horizontal">
- <StackLayout HorizontalOptions="Start" BindableLayout.ItemsSource="{Binding Path=.}">
- <BindableLayout.ItemTemplate>
- <DataTemplate>
- <Label TextColor="Black" FontSize="26" VerticalOptions="Center" Text="{Binding Path=Title}" WidthRequest="320"/>
- </DataTemplate>
- </BindableLayout.ItemTemplate>
- </StackLayout>
- <StackLayout Orientation="Horizontal" BindableLayout.ItemsSource="{Binding ServiceTitles}">
- <BindableLayout.ItemTemplate>
- <DataTemplate>
- <Grid >
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="220"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <Label TextColor="White" FontSize="25" Text="{Binding Path=Title}"/>
- <Label TextColor="White" Grid.Column="1" FontSize="25" Text="{Binding Path=Price,StringFormat='{0:### ### ###} сум'}"/>
- </Grid>
- </DataTemplate>
- </BindableLayout.ItemTemplate>
- </StackLayout>
- </StackLayout>
- </DataTemplate>
- </BindableLayout.ItemTemplate>
- </StackLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement