Guest User

Untitled

a guest
Feb 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. using System;
  2. using Xamarin.Forms;
  3.  
  4. namespace MyVTUCSE
  5. {
  6. public class CustomViewCell : ViewCell
  7. {
  8. public static readonly BindableProperty SelectedItemBackgroundColorProperty =
  9. BindableProperty.Create("SelectedItemBackgroundColor",
  10. typeof(Color),
  11. typeof(CustomViewCell),
  12. Color.Default);
  13.  
  14. public Color SelectedItemBackgroundColor
  15. {
  16. get { return (Color)GetValue(SelectedItemBackgroundColorProperty); }
  17. set { SetValue(SelectedItemBackgroundColorProperty, value); }
  18. }
  19. }
  20. }
Add Comment
Please, Sign In to add comment