视图和布局

有四个主要的控制组用于创建Xamarin.Forms应用程序的用户界面

Pages

Xamarin.Forms页面代表跨平台的移动应用程序屏幕(更多信息,请参阅https://developer.xamarin.com/guides/xamarin-forms/controls/pages/)

A Page represents an Activity in Android, a View Controller in iOS, or a Page in the Windows Universal Platform (UWP). 

Page代表了Android的Activity,iOS的View Controller或者UWP的Page

Layouts

Xamarin.Forms布局是用于将视图组合成逻辑结构的容器(更多信息,请参阅https://developer.xamarin.com/guides/xamarin-forms/user-interface/controls/layouts/)

Views

Xamarin.Forms视图是用户界面上显示的控件,如标签,按钮和文本输入框(更多信息,请参阅https://developer.xamarin.com/guides/xamarin-forms/user-interface/controls/views/)

Cells

Xamarin.Forms单元格是用于列表中项目的专用元素,并描述应该如何绘制列表中的每个项目(更多信息,请参阅https://developer.xamarin.com/guides/xamarin-forms/user-interface/controls/cells/)

在运行时,每个控件将被映射到它的本地等价物,这将被渲染

原文

https://developer.xamarin.com/guides/xamarin-forms/getting-started/introduction-to-xamarin-forms/#Views_and_Layouts

你可能感兴趣的:(视图和布局)