├── .gitignore ├── Chapter01 └── PlatformVisuals │ ├── PlatformVisuals.sln │ └── PlatformVisuals │ ├── PlatformVisuals.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── PlatformVisuals.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ ├── Icon.png │ │ │ ├── ic_action_edit.png │ │ │ ├── ic_action_refresh.png │ │ │ └── ic_action_search.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ ├── Icon.png │ │ │ ├── ic_action_edit.png │ │ │ ├── ic_action_refresh.png │ │ │ └── ic_action_search.png │ │ ├── drawable-xhdpi │ │ │ ├── Icon.png │ │ │ ├── ic_action_edit.png │ │ │ ├── ic_action_refresh.png │ │ │ └── ic_action_search.png │ │ └── drawable-xxhdpi │ │ │ ├── Icon.png │ │ │ ├── ic_action_edit.png │ │ │ ├── ic_action_refresh.png │ │ │ └── ic_action_search.png │ └── packages.config │ ├── PlatformVisuals.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── Images │ │ ├── ReadMe.txt │ │ ├── edit.png │ │ ├── feature.search.png │ │ └── refresh.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── PlatformVisuals.WinPhone.csproj │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── PlatformVisuals.iOS │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Main.cs │ ├── PlatformVisuals.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ ├── edit.png │ │ ├── reload.png │ │ └── search.png │ └── packages.config │ └── PlatformVisuals │ ├── App.cs │ ├── PlatformVisuals.csproj │ ├── PlatformVisualsPage.xaml │ ├── PlatformVisualsPage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter02 ├── Baskervilles │ ├── Baskervilles.sln │ └── Baskervilles │ │ ├── Baskervilles.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Baskervilles.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── Baskervilles.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── Baskervilles.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── Baskervilles.iOS │ │ ├── AppDelegate.cs │ │ ├── Baskervilles.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── Baskervilles │ │ ├── App.cs │ │ ├── Baskervilles.csproj │ │ ├── BaskervillesPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── BlackCat │ ├── BlackCat.sln │ └── BlackCat │ │ ├── BlackCat.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BlackCat.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── BlackCat.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BlackCat.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── BlackCat.iOS │ │ ├── AppDelegate.cs │ │ ├── BlackCat.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── BlackCat │ │ ├── App.cs │ │ ├── BlackCat.csproj │ │ ├── BlackCatPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Texts │ │ └── TheBlackCat.txt │ │ └── packages.config ├── BlackCatSap │ ├── BlackCatSap.sln │ └── BlackCatSap │ │ ├── BlackCatSap.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BlackCatSap.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── BlackCatSap.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BlackCatSap.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── BlackCatSap.iOS │ │ ├── AppDelegate.cs │ │ ├── BlackCatSap.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── BlackCatSap │ │ ├── App.cs │ │ ├── BlackCatSap.projitems │ │ ├── BlackCatSap.shproj │ │ ├── BlackCatSapPage.cs │ │ └── Texts │ │ └── TheBlackCat.txt ├── ButtonLambdas │ ├── ButtonLambdas.sln │ └── ButtonLambdas │ │ ├── ButtonLambdas.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ButtonLambdas.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ButtonLambdas.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ButtonLambdas.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ButtonLambdas.iOS │ │ ├── AppDelegate.cs │ │ ├── ButtonLambdas.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ButtonLambdas │ │ ├── App.cs │ │ ├── ButtonLambdas.csproj │ │ ├── ButtonLambdasPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── ButtonLogger │ ├── ButtonLogger.sln │ └── ButtonLogger │ │ ├── ButtonLogger.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ButtonLogger.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ButtonLogger.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ButtonLogger.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ButtonLogger.iOS │ │ ├── AppDelegate.cs │ │ ├── ButtonLogger.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ButtonLogger │ │ ├── App.cs │ │ ├── ButtonLogger.csproj │ │ ├── ButtonLoggerPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── ColorBlocks │ ├── ColorBlocks.sln │ └── ColorBlocks │ │ ├── ColorBlocks.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ColorBlocks.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ColorBlocks.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ColorBlocks.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ColorBlocks.iOS │ │ ├── AppDelegate.cs │ │ ├── ColorBlocks.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ColorBlocks │ │ ├── App.cs │ │ ├── ColorBlocks.csproj │ │ ├── ColorBlocksPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── ColorList │ ├── ColorList.sln │ └── ColorList │ │ ├── ColorList.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ColorList.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ColorList.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ColorList.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ColorList.iOS │ │ ├── AppDelegate.cs │ │ ├── ColorList.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ColorList │ │ ├── App.cs │ │ ├── ColorList.csproj │ │ ├── ColorListPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── Greetings │ ├── Greetings.sln │ └── Greetings │ │ ├── Greetings.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Greetings.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── Greetings.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── Greetings.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── Greetings.iOS │ │ ├── AppDelegate.cs │ │ ├── Greetings.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── Greetings │ │ ├── App.cs │ │ ├── Greetings.csproj │ │ ├── GreetingsPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── Hello │ ├── Hello.sln │ └── Hello │ │ ├── Hello.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── Hello.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── Hello.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── Hello.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── Hello.iOS │ │ ├── AppDelegate.cs │ │ ├── Hello.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── Hello │ │ ├── App.cs │ │ ├── Hello.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── HelloPcl │ ├── HelloPcl.sln │ └── HelloPcl │ │ ├── HelloPcl.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── HelloPcl.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── HelloPcl.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── HelloPcl.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── HelloPcl.iOS │ │ ├── AppDelegate.cs │ │ ├── HelloPcl.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── HelloPcl │ │ ├── App.cs │ │ ├── HelloPcl.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── HelloSap │ ├── HelloSap.sln │ └── HelloSap │ │ ├── HelloSap.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── HelloSap.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── HelloSap.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── HelloSap.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── HelloSap.iOS │ │ ├── AppDelegate.cs │ │ ├── HelloSap.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── HelloSap │ │ ├── App.cs │ │ ├── HelloSap.projitems │ │ └── HelloSap.shproj ├── ReflectedColors │ ├── ReflectedColors.sln │ └── ReflectedColors │ │ ├── ReflectedColors.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── ReflectedColors.Android.csproj │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ReflectedColors.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── ReflectedColors.WinPhone.csproj │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ReflectedColors.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ReflectedColors.iOS.csproj │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ReflectedColors │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ReflectedColors.csproj │ │ ├── ReflectedColorsPage.cs │ │ └── packages.config ├── SimplestKeypad │ ├── SimplestKeypad.sln │ └── SimplestKeypad │ │ ├── SimplestKeypad.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ ├── SimplestKeypad.Android.csproj │ │ └── packages.config │ │ ├── SimplestKeypad.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SimplestKeypad.WinPhone.csproj │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── SimplestKeypad.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── SimplestKeypad.iOS.csproj │ │ └── packages.config │ │ └── SimplestKeypad │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SimplestKeypad.csproj │ │ ├── SimplestKeypadPage.cs │ │ └── packages.config ├── TwoButtons │ ├── TwoButtons.sln │ └── TwoButtons │ │ ├── TwoButtons.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ ├── TwoButtons.Android.csproj │ │ └── packages.config │ │ ├── TwoButtons.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ ├── TwoButtons.WinPhone.csproj │ │ └── packages.config │ │ ├── TwoButtons.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── TwoButtons.iOS.csproj │ │ └── packages.config │ │ └── TwoButtons │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TwoButtons.csproj │ │ ├── TwoButtonsPage.cs │ │ └── packages.config └── VerticalOptionsDemo │ ├── VerticalOptionsDemo.sln │ └── VerticalOptionsDemo │ ├── VerticalOptionsDemo.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── Icon.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ └── Icon.png │ │ ├── drawable-xhdpi │ │ │ └── Icon.png │ │ └── drawable-xxhdpi │ │ │ └── Icon.png │ ├── VerticalOptionsDemo.Android.csproj │ └── packages.config │ ├── VerticalOptionsDemo.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ ├── VerticalOptionsDemo.WinPhone.csproj │ └── packages.config │ ├── VerticalOptionsDemo.iOS │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ ├── VerticalOptionsDemo.iOS.csproj │ └── packages.config │ └── VerticalOptionsDemo │ ├── App.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── VerticalOptionsDemo.csproj │ ├── VerticalOptionsDemoPage.cs │ └── packages.config ├── Chapter03 ├── NoteTaker1 │ ├── NoteTaker1.sln │ └── NoteTaker1 │ │ ├── NoteTaker1.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── NoteTaker1.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker1.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker1.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker1.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker1.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker1 │ │ ├── App.cs │ │ ├── NoteTaker1.csproj │ │ ├── NoteTaker1Page.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker2Pcl │ ├── NoteTaker2Pcl.sln │ └── NoteTaker2Pcl │ │ ├── NoteTaker2Pcl.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker2Pcl.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker2Pcl.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker2Pcl.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker2Pcl.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker2Pcl.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker2Pcl │ │ ├── App.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteTaker2Pcl.csproj │ │ ├── NoteTaker2PclPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker2Sap │ ├── NoteTaker2Sap.sln │ └── NoteTaker2Sap │ │ ├── NoteTaker2Sap.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── NoteTaker2Sap.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker2Sap.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker2Sap.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker2Sap.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker2Sap.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker2Sap │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── Note.cs │ │ ├── NoteTaker2Sap.projitems │ │ ├── NoteTaker2Sap.shproj │ │ └── NoteTaker2SapPage.cs ├── NoteTaker3Pcl │ ├── NoteTaker3Pcl.sln │ └── NoteTaker3Pcl │ │ ├── NoteTaker3Pcl.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker3Pcl.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker3Pcl.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker3Pcl.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker3Pcl.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker3Pcl.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker3Pcl │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteTaker3Pcl.csproj │ │ ├── NoteTaker3PclPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker3Sap │ ├── NoteTaker3Sap.sln │ └── NoteTaker3Sap │ │ ├── NoteTaker3Sap.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── NoteTaker3Sap.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker3Sap.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker3Sap.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker3Sap.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker3Sap.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker3Sap │ │ ├── App.cs │ │ ├── Note.cs │ │ ├── NoteTaker3Sap.projitems │ │ ├── NoteTaker3Sap.shproj │ │ └── NoteTaker3SapPage.cs ├── NoteTaker4 │ ├── NoteTaker4.sln │ └── NoteTaker4 │ │ ├── NoteTaker4.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker4.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker4.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker4.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker4.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker4.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker4 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteTaker4.csproj │ │ ├── NoteTaker4Page.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker5 │ ├── NoteTaker5.sln │ └── NoteTaker5 │ │ ├── NoteTaker5.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker5.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker5.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker5.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker5.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker5.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker5 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteTaker5.csproj │ │ ├── NoteTaker5Page.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config └── NoteTaker6 │ ├── NoteTaker6.sln │ └── NoteTaker6 │ ├── NoteTaker6.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── FileHelper.cs │ ├── MainActivity.cs │ ├── NoteTaker6.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── Icon.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ └── Icon.png │ │ ├── drawable-xhdpi │ │ │ └── Icon.png │ │ └── drawable-xxhdpi │ │ │ └── Icon.png │ └── packages.config │ ├── NoteTaker6.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── FileHelper.cs │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NoteTaker6.WinPhone.csproj │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── NoteTaker6.iOS │ ├── AppDelegate.cs │ ├── FileHelper.cs │ ├── Info.plist │ ├── Main.cs │ ├── NoteTaker6.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ └── packages.config │ └── NoteTaker6 │ ├── App.cs │ ├── FileHelper.cs │ ├── IFileHelper.cs │ ├── Note.cs │ ├── NoteTaker6.csproj │ ├── NoteTaker6Page.cs │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter04 ├── NoteTaker │ ├── NoteTaker.sln │ └── NoteTaker │ │ ├── NoteTaker.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── LifecycleHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ ├── ic_action_new.png │ │ │ │ └── icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ ├── ic_action_new.png │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ ├── ic_action_new.png │ │ │ │ └── icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ ├── ic_action_new.png │ │ │ │ └── icon.png │ │ └── packages.config │ │ ├── NoteTaker.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── Images │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ └── delete.png │ │ ├── LifecycleHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── LifecycleHelper.cs │ │ ├── Main.cs │ │ ├── NoteTaker.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── cancel.png │ │ │ ├── cancel@2x.png │ │ │ ├── discard.png │ │ │ ├── discard@2x.png │ │ │ ├── new.png │ │ │ └── new@2x.png │ │ └── packages.config │ │ └── NoteTaker │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── ILifecycleHelper.cs │ │ ├── Note.cs │ │ ├── NoteFolder.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker10 │ ├── NoteTaker10.sln │ └── NoteTaker10 │ │ ├── NoteTaker10.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker10.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker10.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker10.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker10.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker10.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker10 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteFolder.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker10.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker11 │ ├── NoteTaker11.sln │ └── NoteTaker11 │ │ ├── NoteTaker11.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker11.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ └── drawable-xxhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ └── packages.config │ │ ├── NoteTaker11.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── Images │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ └── delete.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker11.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker11.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker11.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── cancel.png │ │ │ ├── cancel@2x.png │ │ │ ├── discard.png │ │ │ ├── discard@2x.png │ │ │ ├── new.png │ │ │ └── new@2x.png │ │ └── packages.config │ │ └── NoteTaker11 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteFolder.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker11.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker12 │ ├── NoteTaker12.sln │ └── NoteTaker12 │ │ ├── NoteTaker12.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── LifecycleHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker12.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ │ └── drawable-xxhdpi │ │ │ │ ├── Icon.png │ │ │ │ ├── ic_action_cancel.png │ │ │ │ ├── ic_action_discard.png │ │ │ │ └── ic_action_new.png │ │ └── packages.config │ │ ├── NoteTaker12.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── Images │ │ │ ├── add.png │ │ │ ├── cancel.png │ │ │ └── delete.png │ │ ├── LifecycleHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker12.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker12.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── LifecycleHelper.cs │ │ ├── Main.cs │ │ ├── NoteTaker12.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ ├── Icon@2x.png │ │ │ ├── cancel.png │ │ │ ├── cancel@2x.png │ │ │ ├── discard.png │ │ │ ├── discard@2x.png │ │ │ ├── new.png │ │ │ └── new@2x.png │ │ └── packages.config │ │ └── NoteTaker12 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── ILifecycleHelper.cs │ │ ├── Note.cs │ │ ├── NoteFolder.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker12.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker7 │ ├── NoteTaker7.sln │ └── NoteTaker7 │ │ ├── NoteTaker7.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker7.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker7.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker7.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker7.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker7.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker7 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker7.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── NoteTaker8 │ ├── NoteTaker8.sln │ └── NoteTaker8 │ │ ├── NoteTaker8.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FileHelper.cs │ │ ├── MainActivity.cs │ │ ├── NoteTaker8.Android.csproj │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── NoteTaker8.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FileHelper.cs │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── NoteTaker8.WinPhone.csproj │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── NoteTaker8.iOS │ │ ├── AppDelegate.cs │ │ ├── FileHelper.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── NoteTaker8.iOS.csproj │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── NoteTaker8 │ │ ├── App.cs │ │ ├── FileHelper.cs │ │ ├── HomePage.cs │ │ ├── IFileHelper.cs │ │ ├── Note.cs │ │ ├── NoteFolder.cs │ │ ├── NotePage.cs │ │ ├── NoteTaker8.csproj │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config └── NoteTaker9 │ ├── NoteTaker9.sln │ └── NoteTaker9 │ ├── NoteTaker9.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── FileHelper.cs │ ├── MainActivity.cs │ ├── NoteTaker9.Android.csproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── Icon.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ └── Icon.png │ │ ├── drawable-xhdpi │ │ │ └── Icon.png │ │ └── drawable-xxhdpi │ │ │ └── Icon.png │ └── packages.config │ ├── NoteTaker9.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── FileHelper.cs │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── NoteTaker9.WinPhone.csproj │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── NoteTaker9.iOS │ ├── AppDelegate.cs │ ├── FileHelper.cs │ ├── Info.plist │ ├── Main.cs │ ├── NoteTaker9.iOS.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ └── packages.config │ └── NoteTaker9 │ ├── App.cs │ ├── FileHelper.cs │ ├── HomePage.cs │ ├── IFileHelper.cs │ ├── Note.cs │ ├── NoteFolder.cs │ ├── NotePage.cs │ ├── NoteTaker9.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── packages.config ├── Chapter05 ├── AbsoluteLayoutDemo │ ├── AbsoluteLayoutDemo.sln │ └── AbsoluteLayoutDemo │ │ ├── AbsoluteLayoutDemo.Android │ │ ├── AbsoluteLayoutDemo.Android.csproj │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── AbsoluteLayoutDemo.WinPhone │ │ ├── AbsoluteLayoutDemo.WinPhone.csproj │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── AbsoluteLayoutDemo.iOS │ │ ├── AbsoluteLayoutDemo.iOS.csproj │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── AbsoluteLayoutDemo │ │ ├── AbsoluteLayoutDemo.csproj │ │ ├── AbsoluteLayoutDemoPage.cs │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── BitmapFromPlatforms │ ├── BitmapFromPlatforms.sln │ └── BitmapFromPlatforms │ │ ├── BitmapFromPlatforms.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BitmapFromPlatforms.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── BitmapFromPlatforms.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BitmapFromPlatforms.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── BitmapFromPlatforms.iOS │ │ ├── AppDelegate.cs │ │ ├── BitmapFromPlatforms.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── BitmapFromPlatforms │ │ ├── App.cs │ │ ├── BitmapFromPlatforms.csproj │ │ ├── BitmapFromPlatformsPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── BitmapFromResource │ ├── BitmapFromResource.sln │ └── BitmapFromResource │ │ ├── BitmapFromResource.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BitmapFromResource.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── BitmapFromResource.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BitmapFromResource.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── BitmapFromResource.iOS │ │ ├── AppDelegate.cs │ │ ├── BitmapFromResource.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── BitmapFromResource │ │ ├── App.cs │ │ ├── BitmapFromResource.csproj │ │ ├── BitmapFromResourcePage.cs │ │ ├── Images │ │ ├── ModernUserInterface.jpg │ │ └── ModernUserInterface256.jpg │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── BitmapFromWebsite │ ├── BitmapFromWebsite.sln │ └── BitmapFromWebsite │ │ ├── BitmapFromWebsite.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── BitmapFromWebsite.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── BitmapFromWebsite.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── BitmapFromWebsite.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── BitmapFromWebsite.iOS │ │ ├── AppDelegate.cs │ │ ├── BitmapFromWebsite.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── BitmapFromWebsite │ │ ├── App.cs │ │ ├── BitmapFromWebsite.csproj │ │ ├── BitmapFromWebsitePage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── ClassHierarchy │ ├── ClassHierarchy.sln │ └── ClassHierarchy │ │ ├── ClassHierarchy.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ClassHierarchy.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ClassHierarchy.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ClassHierarchy.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ClassHierarchy.iOS │ │ ├── AppDelegate.cs │ │ ├── ClassHierarchy.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ClassHierarchy │ │ ├── App.cs │ │ ├── ClassAndSubclasses.cs │ │ ├── ClassHierarchy.csproj │ │ ├── ClassHierarchyPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TypeInformation.cs │ │ └── packages.config ├── DigitalClock │ ├── DigitalClock.sln │ └── DigitalClock │ │ ├── DigitalClock.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DigitalClock.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── DigitalClock.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── DigitalClock.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── DigitalClock.iOS │ │ ├── AppDelegate.cs │ │ ├── DigitalClock.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── DigitalClock │ │ ├── App.cs │ │ ├── DigitalClock.csproj │ │ ├── DigitalClockPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── DotMatrixClock │ ├── DotMatrixClock.sln │ └── DotMatrixClock │ │ ├── DotMatrixClock.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DotMatrixClock.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── DotMatrixClock.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── DotMatrixClock.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── DotMatrixClock.iOS │ │ ├── AppDelegate.cs │ │ ├── DotMatrixClock.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── DotMatrixClock │ │ ├── App.cs │ │ ├── DotMatrixClock.csproj │ │ ├── DotMatrixClockPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── EstimatedFontSize │ ├── EstimatedFontSize.sln │ └── EstimatedFontSize │ │ ├── EstimatedFontSize.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── EstimatedFontSize.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── EstimatedFontSize.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── EstimatedFontSize.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── EstimatedFontSize.iOS │ │ ├── AppDelegate.cs │ │ ├── EstimatedFontSize.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── EstimatedFontSize │ │ ├── App.cs │ │ ├── EstimatedFontSize.csproj │ │ ├── EstimatedFontSizePage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── FontSizes │ ├── FontSizes.sln │ └── FontSizes │ │ ├── FontSizes.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── FontSizes.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── FontSizes.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── FontSizes.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── FontSizes.iOS │ │ ├── AppDelegate.cs │ │ ├── FontSizes.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── FontSizes │ │ ├── App.cs │ │ ├── FontSizes.csproj │ │ ├── FontSizesPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── ProportionalDotMatrixClock │ ├── ProportionalDotMatrixClock.sln │ └── ProportionalDotMatrixClock │ │ ├── ProportionalDotMatrixClock.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── ProportionalDotMatrixClock.Android.csproj │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ProportionalDotMatrixClock.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── ProportionalDotMatrixClock.WinPhone.csproj │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ProportionalDotMatrixClock.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── ProportionalDotMatrixClock.iOS.csproj │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ProportionalDotMatrixClock │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ProportionalDotMatrixClock.csproj │ │ ├── ProportionalDotMatrixClockPage.cs │ │ └── packages.config └── WhatSize │ ├── WhatSize.sln │ └── WhatSize │ ├── WhatSize.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── Icon.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ └── Icon.png │ │ ├── drawable-xhdpi │ │ │ └── Icon.png │ │ └── drawable-xxhdpi │ │ │ └── Icon.png │ ├── WhatSize.Android.csproj │ └── packages.config │ ├── WhatSize.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ ├── WhatSize.WinPhone.csproj │ └── packages.config │ ├── WhatSize.iOS │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ ├── WhatSize.iOS.csproj │ └── packages.config │ └── WhatSize │ ├── App.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── WhatSize.csproj │ ├── WhatSizePage.cs │ └── packages.config ├── Chapter06 ├── ColorScroll │ ├── ColorScroll.sln │ └── ColorScroll │ │ ├── ColorScroll.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── ColorScroll.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── ColorScroll.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── ColorScroll.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── ColorScroll.iOS │ │ ├── AppDelegate.cs │ │ ├── ColorScroll.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── ColorScroll │ │ ├── App.cs │ │ ├── ColorScroll.csproj │ │ ├── ColorScrollPage.cs │ │ ├── DoubleToIntegerConverter.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RadioExtensions.cs │ │ └── packages.config ├── DaysBetweenDates │ ├── DaysBetweenDates.sln │ └── DaysBetweenDates │ │ ├── DaysBetweenDates.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── DaysBetweenDates.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── DaysBetweenDates.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── DaysBetweenDates.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── DaysBetweenDates.iOS │ │ ├── AppDelegate.cs │ │ ├── DaysBetweenDates.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── DaysBetweenDates │ │ ├── App.cs │ │ ├── DaysBetweenDates.csproj │ │ ├── DaysBetweenDatesPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── KeypadGrid │ ├── KeypadGrid.sln │ └── KeypadGrid │ │ ├── KeypadGrid.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── KeypadGrid.Android.csproj │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── KeypadGrid.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── KeypadGrid.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── KeypadGrid.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── KeypadGrid.iOS.csproj │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── KeypadGrid │ │ ├── App.cs │ │ ├── KeypadGrid.csproj │ │ ├── KeypadGridPage.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── RadioColors │ ├── RadioColors.sln │ └── RadioColors │ │ ├── RadioColors.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── RadioColors.Android.csproj │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ └── packages.config │ │ ├── RadioColors.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── RadioColors.WinPhone.csproj │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── RadioColors.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RadioColors.iOS.csproj │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ └── packages.config │ │ └── RadioColors │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RadioButton.cs │ │ ├── RadioColors.csproj │ │ ├── RadioColorsPage.cs │ │ └── packages.config ├── SliderStepperSwitch │ ├── SliderStepperSwitch.sln │ └── SliderStepperSwitch │ │ ├── SliderStepperSwitch.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ ├── SliderStepperSwitch.Android.csproj │ │ └── packages.config │ │ ├── SliderStepperSwitch.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SliderStepperSwitch.WinPhone.csproj │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── SliderStepperSwitch.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── SliderStepperSwitch.iOS.csproj │ │ └── packages.config │ │ └── SliderStepperSwitch │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SliderStepperSwitch.csproj │ │ ├── SliderStepperSwitchPage.cs │ │ └── packages.config ├── SliderStepperSwitchBindings │ ├── SliderStepperSwitchBindings.sln │ └── SliderStepperSwitchBindings │ │ ├── SliderStepperSwitchBindings.Android │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── MainActivity.cs │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Drawable │ │ │ │ └── Icon.png │ │ │ ├── drawable-hdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-ldpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-mdpi │ │ │ │ └── Icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── Icon.png │ │ │ └── drawable-xxhdpi │ │ │ │ └── Icon.png │ │ ├── SliderStepperSwitchBindings.Android.csproj │ │ └── packages.config │ │ ├── SliderStepperSwitchBindings.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SliderStepperSwitchBindings.WinPhone.csproj │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── SliderStepperSwitchBindings.iOS │ │ ├── AppDelegate.cs │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon.png │ │ │ └── Icon@2x.png │ │ ├── SliderStepperSwitchBindings.iOS.csproj │ │ └── packages.config │ │ └── SliderStepperSwitchBindings │ │ ├── App.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SliderStepperSwitchBindings.csproj │ │ ├── SliderStepperSwitchBindingsPage.cs │ │ └── packages.config └── WhatSizeBindings │ ├── WhatSizeBindings.sln │ └── WhatSizeBindings │ ├── WhatSizeBindings.Android │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Drawable │ │ │ └── Icon.png │ │ ├── drawable-hdpi │ │ │ └── Icon.png │ │ ├── drawable-ldpi │ │ │ └── Icon.png │ │ ├── drawable-mdpi │ │ │ └── Icon.png │ │ ├── drawable-xhdpi │ │ │ └── Icon.png │ │ └── drawable-xxhdpi │ │ │ └── Icon.png │ ├── WhatSizeBindings.Android.csproj │ └── packages.config │ ├── WhatSizeBindings.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── LocalizedStrings.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── README_FIRST.txt │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ ├── SplashScreenImage.jpg │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ ├── WhatSizeBindings.WinPhone.csproj │ └── packages.config │ ├── WhatSizeBindings.iOS │ ├── AppDelegate.cs │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon.png │ │ └── Icon@2x.png │ ├── WhatSizeBindings.iOS.csproj │ └── packages.config │ └── WhatSizeBindings │ ├── App.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── WhatSizeBindings.csproj │ ├── WhatSizeBindingsPage.cs │ └── packages.config └── README.md /Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.WinPhone/Images/ReadMe.txt: -------------------------------------------------------------------------------- 1 | These are standard Windows Phone appbar icons from C:\Program Files (x86)\Microsoft SDKs\Windows Phone\v8.0\Icons\Dark -------------------------------------------------------------------------------- /Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.iOS/Resources/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.iOS/Resources/edit.png -------------------------------------------------------------------------------- /Chapter01/PlatformVisuals/PlatformVisuals/PlatformVisuals.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Baskervilles/Baskervilles/Baskervilles/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.Android/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCat/BlackCat/BlackCat.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/BlackCat/BlackCat/BlackCat/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/BlackCatSap/BlackCatSap/BlackCatSap.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ButtonLambdas/ButtonLambdas/ButtonLambdas/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ButtonLogger/ButtonLogger/ButtonLogger/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ColorBlocks/ColorBlocks/ColorBlocks/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ColorList/ColorList/ColorList.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ColorList/ColorList/ColorList/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Greetings/Greetings/Greetings.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Greetings/Greetings/Greetings/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.Android/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.Android/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/Hello/Hello/Hello.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/Hello/Hello/Hello/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.Android/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/HelloPcl/HelloPcl/HelloPcl/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-xxhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.Android/Resources/drawable-xxhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/HelloSap/HelloSap/HelloSap.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/HelloSap/HelloSap/HelloSap.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/ReflectedColors/ReflectedColors/ReflectedColors.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/ReflectedColors/ReflectedColors/ReflectedColors.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/ReflectedColors/ReflectedColors/ReflectedColors.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/SimplestKeypad/SimplestKeypad/SimplestKeypad/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/TwoButtons/TwoButtons/TwoButtons/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter02/VerticalOptionsDemo/VerticalOptionsDemo/VerticalOptionsDemo.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker1/NoteTaker1/NoteTaker1/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Pcl/NoteTaker2Pcl/NoteTaker2Pcl/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker2Sap/NoteTaker2Sap/NoteTaker2Sap.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Pcl/NoteTaker3Pcl/NoteTaker3Pcl/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker3Sap/NoteTaker3Sap/NoteTaker3Sap.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker4/NoteTaker4/NoteTaker4/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker5/NoteTaker5/NoteTaker5/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter03/NoteTaker6/NoteTaker6/NoteTaker6/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.Android/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/add.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/Images/delete.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/cancel@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/discard.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/discard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/discard@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/new.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/Resources/new@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker/NoteTaker/NoteTaker/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker10/NoteTaker10/NoteTaker10/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/add.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/Images/delete.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/cancel@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/discard.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/discard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/discard@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/new.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/Resources/new@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker11/NoteTaker11/NoteTaker11/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/add.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/Images/delete.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/cancel.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/cancel@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/discard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/discard.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/discard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/discard@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/new.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/new@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/Resources/new@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker12/NoteTaker12/NoteTaker12/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker7/NoteTaker7/NoteTaker7/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker8/NoteTaker8/NoteTaker8/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter04/NoteTaker9/NoteTaker9/NoteTaker9/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/AbsoluteLayoutDemo/AbsoluteLayoutDemo/AbsoluteLayoutDemo.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/BitmapFromPlatforms/BitmapFromPlatforms/BitmapFromPlatforms.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/BitmapFromResource/BitmapFromResource/BitmapFromResource.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/BitmapFromWebsite/BitmapFromWebsite/BitmapFromWebsite.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter05/ClassHierarchy/ClassHierarchy/ClassHierarchy.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/DigitalClock/DigitalClock/DigitalClock/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/DotMatrixClock/DotMatrixClock/DotMatrixClock.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/DotMatrixClock/DotMatrixClock/DotMatrixClock.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter05/DotMatrixClock/DotMatrixClock/DotMatrixClock.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/EstimatedFontSize/EstimatedFontSize/EstimatedFontSize.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/FontSizes/FontSizes/FontSizes.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/FontSizes/FontSizes/FontSizes/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-hdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-hdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-ldpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-ldpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-mdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-mdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-xhdpi/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.Android/Resources/drawable-xhdpi/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter05/WhatSize/WhatSize/WhatSize.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter05/WhatSize/WhatSize/WhatSize/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/ColorScroll/ColorScroll/ColorScroll/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/DaysBetweenDates/DaysBetweenDates/DaysBetweenDates.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.Android/Resources/Drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.Android/Resources/Drawable/Icon.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- 1 | For the Windows Phone toolkit make sure that you have 2 | marked the icons in the "Toolkit.Content" folder as content. That way they 3 | can be used as the icons for the ApplicationBar control. -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/KeypadGrid/KeypadGrid/KeypadGrid/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xamarin/xamarin-forms-book-preview/52f1ae6c943b8733a0ca07ba75653eec44a20f9b/Chapter06/RadioColors/RadioColors/RadioColors.iOS/Resources/Icon@2x.png -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/RadioColors/RadioColors/RadioColors/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/SliderStepperSwitch/SliderStepperSwitch/SliderStepperSwitch.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Chapter06/WhatSizeBindings/WhatSizeBindings/WhatSizeBindings.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | --------------------------------------------------------------------------------