<?xml version="1.0" encoding="utf-8"?><ContentPagexmlns="http://xamarin.com/schemas/2014/forms"xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"x:Class="XFESFileSystem.Views.MainPage"Title="Xamarin.Essentials: 檔案系統的協助程式"><StackLayoutHorizontalOptions="CenterAndExpand"VerticalOptions="CenterAndExpand"><LabelText="Welcome to Xamarin Forms and Prism!" /><EntryText="{Binding Account}"Placeholder="請輸入帳號"/><EntryText="{Binding Password}"IsPassword="True"Placeholder="請輸入密碼"/><StackLayoutOrientation="Horizontal"><ButtonText="清空"Command="{Binding CleanCommand}"/><ButtonText="儲存"Command="{Binding SaveCommand}"/><ButtonText="讀取"Command="{Binding ReadCommand}"/></StackLayout></StackLayout></ContentPage>
建立測試專案
<ItemGroup> <PackageReference Include="Xamarin.Essentials"> <Version>0.7.0.17-preview</Version> </PackageReference> <PackageReference Include="Xamarin.Forms" Version="2.5.0.122203" /> <PackageReference Include="Xamarin.Android.Support.Design" Version="25.4.0.2" /> <PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="25.4.0.2" /> <PackageReference Include="Xamarin.Android.Support.v4" Version="25.4.0.2" /> <PackageReference Include="Xamarin.Android.Support.v7.CardView" Version="25.4.0.2" /> <PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" Version="25.4.0.2" /> <PackageReference Include="Prism.Unity.Forms" Version="7.0.0.396" /> </ItemGroup>
<ItemGroup> <PackageReference Include="Xamarin.Essentials"> <Version>0.7.0.17-preview</Version> </PackageReference> <PackageReference Include="Xamarin.Forms" Version="2.5.0.122203" /> <PackageReference Include="Xamarin.Android.Support.Design" Version="27.0.2.1" /> <PackageReference Include="Xamarin.Android.Support.v7.AppCompat" Version="27.0.2.1" /> <PackageReference Include="Xamarin.Android.Support.v4" Version="27.0.2.1" /> <PackageReference Include="Xamarin.Android.Support.v7.CardView" Version="27.0.2.1" /> <PackageReference Include="Xamarin.Android.Support.v7.MediaRouter" Version="27.0.2.1" /> <PackageReference Include="Prism.Unity.Forms" Version="7.0.0.396" /> </ItemGroup>
<?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://xamarin.com/schemas/2014/forms" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" x:Class="XFESFileSystem.Views.MainPage" Title="Xamarin.Essentials: 檔案系統的協助程式"> <StackLayout HorizontalOptions="CenterAndExpand" VerticalOptions="CenterAndExpand"> <Label Text="Welcome to Xamarin Forms and Prism!" /> <Entry Text="{Binding Account}" Placeholder="請輸入帳號"/> <Entry Text="{Binding Password}" IsPassword="True" Placeholder="請輸入密碼"/> <StackLayout Orientation="Horizontal"> <Button Text="清空" Command="{Binding CleanCommand}"/> <Button Text="儲存" Command="{Binding SaveCommand}"/> <Button Text="讀取" Command="{Binding ReadCommand}"/> </StackLayout> </StackLayout> </ContentPage>