Advertisement
Guest User

Untitled

a guest
Feb 7th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. public App ()
  2. {
  3. MainPage = new CarouselPage{
  4. InputTransparent = true, //This!
  5. Children = {
  6. new ContentPage{
  7. Content = new Label{
  8. Text = "Page 1",
  9. HorizontalOptions = LayoutOptions.CenterAndExpand,
  10. VerticalOptions = LayoutOptions.CenterAndExpand,
  11. }
  12. },
  13. new ContentPage{
  14. Content = new Label{
  15. Text = "Page 2",
  16. HorizontalOptions = LayoutOptions.CenterAndExpand,
  17. VerticalOptions = LayoutOptions.CenterAndExpand,
  18. }
  19. }
  20. }
  21. };
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement