XF 列表视图

<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:App27"
             x:Class="App27.MainPage">

    <TableView Intent="Settings">
        <TableRoot Title="设置">
            <TableSection Title="网络设置">
                <SwitchCell Text="WIFI"></SwitchCell>
                <SwitchCell Text="询问是否加入网络"></SwitchCell>
            </TableSection>
            <TableSection Title="隐私设置">
                <SwitchCell Text="定位服务"></SwitchCell>
            </TableSection>
        </TableRoot>
    </TableView>

</ContentPage>
 

猜你喜欢

转载自blog.csdn.net/dxm809/article/details/81462598