var tv = new TableView
{
Intent = TableIntent.Form,
Root = new TableRoot
{
new TableSection
{
new SwitchCell
{
Text = "Remember Me"
}
}
}
};
我将如何访问SwitchCell,以便在Xamarin Forms中看到
On
属性More info on SwitchCell found here
最佳答案
得到它了:
SwitchCell sc = (SwitchCell)tv.Root[0][0];
bool booleanprop = sc.On;
当您知道如何时就很容易。