EntryCell

EntryCell 是一个 Cell,它结合了 Label 和 Entry 的功能。在应用程序中构建某些功能以从用户收集数据时,EntryCell 非常有用。它们可以很容易地放入 TableView 中,并被视为一个简单的表单。

XAML

<EntryCell Label="Type Something"
Placeholder="Here"/>

var entryCell = new EntryCell {
Label = "Type Something",
Placeholder = "Here"
};

StackOverflow 文档