最佳答案
在 Xamarin。表单每个 View
都有两个属性 HorizontalOptions
和 VerticalOptions
。两者都属于 LayoutOptions
类型,可以具有以下值之一:
LayoutOptions.Start
LayoutOptions.Center
LayoutOptions.End
LayoutOptions.Fill
LayoutOptions.StartAndExpand
LayoutOptions.CenterAndExpand
LayoutOptions.EndAndExpand
LayoutOptions.FillAndExpand
显然,它控制着视图在父视图上的对齐方式。但是每个选项的行为到底是怎样的呢?Fill
和后缀 Expand
的区别是什么?