我正在阅读Apress 的 Xamarin 移动应用程序开发,但遗漏了一些东西。我有这个代码删除了不必要的东西:
public ContentPageExample()
{
var layout = new StackLayout
{
Children =
{
// bunch of "View"s here
},
HeightRequest = 1500
};
ScrollView scrollView = new ScrollView
{
VerticalOptions = LayoutOptions.FillAndExpand,
Content = layout
};
this.Content = scrollView;
}
但是,内容不会滚动。我在模拟器WinPhone
和Android
模拟器中都试过了(没有一个Mac
方便的尝试iPhone
)。书上说东西应该滚动。我错过了什么?