C# Xamarin交叉表单,身份验证sqlite数据库

C# Xamarin交叉表单,身份验证sqlite数据库,c#,sqlite,xamarin.ios,xamarin.forms,C#,Sqlite,Xamarin.ios,Xamarin.forms,我对Xamarin很陌生。我正在寻找一种方法来创建一个身份验证表单页面,然后将我的slqite数据放入服务器 我已经设法创建了sqlite数据库模型,并设法将数据(在本例中是汽车名称)放入数据库 这是我的xaml表单,当用户想要创建帐户时,它会显示给用户,登录时它是相同的: <ContentPage.Content> <StackLayout Padding="20"> <StackLayout Orientation="

我对Xamarin很陌生。我正在寻找一种方法来创建一个身份验证表单页面,然后将我的slqite数据放入服务器

我已经设法创建了sqlite数据库模型,并设法将数据(在本例中是汽车名称)放入数据库

这是我的xaml表单,当用户想要创建帐户时,它会显示给用户,登录时它是相同的:

 <ContentPage.Content>
        <StackLayout Padding="20">

            <StackLayout Orientation="Horizontal" Spacing="2" HorizontalOptions="Center">
                <Label Text="Connect !" FontSize="25"/>
            </StackLayout>

            <Label Text="Name" FontSize="25"/>
            <Entry x:Name="MyName" Placeholder="Your Name please" ></Entry>

            <Label Text="Adress Mail" FontSize="25"/>
            <Entry x:Name="Mymail" Placeholder="Your Adress mail please"></Entry>

            <Label Text="Profession" FontSize="25"/>
            <Entry x:Name="MyProfession" Placeholder="Your Profession please" ></Entry>

            <Label Text="Your Password" FontSize="25"/>
            <Entry IsPassword="true" x:Name="MyPassword" Placeholder="your password please" FontSize="Medium"></Entry>    

            <StackLayout Orientation="Horizontal">
                <Button Text="OK" BackgroundColor="Gray" TextColor="White"   FontSize="25"/>
            </StackLayout>
        </StackLayout>
    </ContentPage.Content>

理想情况下,我正在寻找如何实现这种模式的简单易懂的示例,如果您对每个步骤都有任何示例代码,那么这些示例也会非常有用


提前谢谢。

关于使用Web服务和远程数据库的教程已经有几十本了,如果不是几百本的话。你能给我举个例子吗