Guest User

Untitled

a guest
Jan 19th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. string[] array1 = { "hotel", "a", "b", "c", "c", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b", "b" };
  2. StackLayout stackLayout = new StackLayout
  3. {Orientation = StackOrientation.Horizontal,
  4. BackgroundColor = Color.Goldenrod,
  5. HorizontalOptions = LayoutOptions.CenterAndExpand,};
  6. Content = new ScrollView{VerticalOptions = LayoutOptions.Start,
  7. Orientation = ScrollOrientation.Horizontal,
  8. HorizontalOptions = LayoutOptions.CenterAndExpand,Content = stackLayout,};
  9. for (int i = 0; i < array1.Length; i++)
  10. {foreach (var na in array1) {stackLayout.Children.Add
  11. (new Button{
  12. Text = na,
  13. TextColor = Color.Gray, FontSize = Device.GetNamedSize(NamedSize.Large, typeof(Button)) }
  14. ); } }
Add Comment
Please, Sign In to add comment