EntryCell

EntryCell 是一個 Cell,它結合了 Label 和 Entry 的功能。在應用程式中構建某些功能以從使用者收集資料時,EntryCell 非常有用。它們可以很容易地放入 TableView 中,並被視為一個簡單的表單。

XAML

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

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

StackOverflow 文件