Guest User

Untitled

a guest
Jun 21st, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="StartAndExpand" >
  2. <ListView x:Name="lv_search" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" RowHeight="175" SeparatorColor="White">
  3. <ListView.ItemTemplate>
  4. <DataTemplate>
  5. <ViewCell>
  6. <AbsoluteLayout HorizontalOptions="FillAndExpand" VerticalOptions="StartAndExpand" >
  7. <Frame BackgroundColor="White" HorizontalOptions="FillAndExpand" VerticalOptions="StartAndExpand" Margin="20,10,0,0"
  8. HeightRequest="75" AbsoluteLayout.LayoutBounds="0.01,0.9,1,1" AbsoluteLayout.LayoutFlags="All">
  9. <Image Source="img_frm" BackgroundColor="#14559a" AbsoluteLayout.LayoutBounds="0.009,0.9,0.3,0.6" AbsoluteLayout.LayoutFlags="All" />
  10. <StackLayout Orientation="Horizontal" HorizontalOptions="FillAndExpand" VerticalOptions="CenterAndExpand">
  11. <AbsoluteLayout HorizontalOptions="StartAndExpand">
  12. <Image Source="ellipse_1" VerticalOptions="CenterAndExpand" HorizontalOptions="Start" AbsoluteLayout.LayoutFlags="All"
  13. AbsoluteLayout.LayoutBounds="0.01,0.4,1,1" HeightRequest="100" WidthRequest="100" BackgroundColor="White">
  14.  
  15. </Image>
  16.  
  17. <Image Source="{Binding Image}" AbsoluteLayout.LayoutBounds="0.02,0.4,1,1" AbsoluteLayout.LayoutFlags="All"
  18. HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand" ></Image>
  19. </AbsoluteLayout>
  20.  
  21. <Label x:Name="lbl_categories" HorizontalOptions="FillAndExpand" VerticalOptions="CenterAndExpand" Margin="10,0,0,0"
  22. TextColor="Black" Text="{Binding Title}" LineBreakMode="WordWrap" HorizontalTextAlignment="Start"
  23. FontSize="Medium" FontAttributes="Bold" AbsoluteLayout.LayoutBounds="0.3,0.3,1,1" AbsoluteLayout.LayoutFlags="All"/>
  24.  
  25. <Image HorizontalOptions="EndAndExpand" VerticalOptions="Center" Source="arrow" AbsoluteLayout.LayoutBounds="0.9,0.3,0.3,0.3"
  26. AbsoluteLayout.LayoutFlags="All" />
  27. </StackLayout>
  28. </Frame>
  29.  
  30. </AbsoluteLayout>
  31. </ViewCell>
  32. </DataTemplate>
  33. </ListView.ItemTemplate>
  34. </ListView>
Add Comment
Please, Sign In to add comment