如何在Xamarin.Forms中访问TableView的子项

时间:2014-08-08 09:01:26

标签: c# xamarin xamarin.forms

            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

1 个答案:

答案 0 :(得分:2)

知道了:

SwitchCell sc = (SwitchCell)tv.Root[0][0];
bool booleanprop = sc.On;

当你知道如何时很容易。