ViewCell

你可以認為 ViewCell 是一個空白的板岩。建立一個看起來完全符合你需要的 Cell 的是你的個人畫布。你甚至可以將多個其他 View 物件的例項與 Layout 控制元件放在一起組成。你只受想象力的限制。也許是螢幕尺寸。

XAML

<ViewCell>
<ViewCell.View>
<StackLayout>
<Button Text="My Button"/>

<Label Text="My Label"/>
<Entry Text="And some other stuff"/>
</StackLayout>
</ViewCell.View>
</ViewCell>

var button = new Button { Text = "My Button" };
var label = new Label { Text = "My Label" };
var entry = new Entry { Text ="And some other stuff" };
var viewCell = new ViewCell {
View = new StackLayout {
Children = { button, label, entry }
}
};

StackOverflow 文件