Guest User

Untitled

a guest
Jul 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. public static BindableProperty ColorsProperty = BindableProperty.Create(nameof(Colors), typeof(string), typeof(GradientGrid), default(string), defaultBindingMode: BindingMode.OneWay);
  2.  
  3. public string Colors
  4. {
  5. get { return (String)GetValue(ColorsProperty); }
  6. set { SetValue(PaddingProperty, value); }
  7. }
  8.  
  9.  
  10. public static BindableProperty OrentationProperty = BindableProperty.Create(nameof(Orentation), typeof(GradientOrentation), typeof(GradientGrid), default(GradientOrentation), defaultBindingMode: BindingMode.OneWay);
  11.  
  12. public GradientOrentation Orentation
  13. {
  14. get { return (GradientOrentation)GetValue(OrentationProperty); }
  15. set { SetValue(PaddingProperty, value); }
  16. }
Add Comment
Please, Sign In to add comment