如何在Xamarin.Forms中访问TableView的子视图?

本文关键字:TableView 视图 访问 Xamarin Forms | 更新日期: 2023-09-27 18:17:09

            var tv = new TableView
            {
                Intent = TableIntent.Form,
                Root = new TableRoot
            {
                new TableSection
                {
                    new SwitchCell
                    {
                        Text = "Remember Me"
                    }
                }
            }
            };

我如何访问SwitchCell,以便我可以在Xamarin Forms中看到On属性

关于SwitchCell的更多信息

如何在Xamarin.Forms中访问TableView的子视图?

明白了:

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