Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. public class LPView:View
  2. {
  3. public LPView()
  4. {
  5. this.VerticalOptions = LayoutOptions.FillAndExpand;
  6. this.HorizontalOptions = LayoutOptions.FillAndExpand;
  7. }
  8.  
  9. public static readonly BindableProperty UrlProperty =
  10. BindableProperty.Create("Url", typeof(string), typeof(LPView), "");
  11.  
  12. public string Url
  13. {
  14. get { return (string)GetValue(UrlProperty); }
  15. set { SetValue(UrlProperty, value); }
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement