var tv = new TableView
{
Intent = TableIntent.Form,
Root = new TableRoot
{
new TableSection
{
new SwitchCell
{
Text = "Remember Me"
}
}
}
};
如何访问SwitchCell,以便在Xamarin Forms中看到On
属性
答案 0 :(得分:2)
知道了:
SwitchCell sc = (SwitchCell)tv.Root[0][0];
bool booleanprop = sc.On;
当你知道如何时很容易。