问题 I know there are many about this topic (Scroll horizontally in Xamarin.Forms ScrollView), but I could not implement the horizontal scrollview which scrolls horizontally. public class DetailView : ContentPage { public DetailView () { StackLayout stack = new StackLayout { Orientation = StackOrientation.Horizontal, }; for (int i = 0; i < 40; i++) stack.Children.Add (new Button { Text = "Button" }); var scrollView = new ScrollView { Orientation = ScrollOrientation.Horizontal, Content = stack };