├── .gitignore ├── DisclosureAccessoryDemo ├── DisclosureAccessoryDemo.sln └── DisclosureAccessoryDemo │ ├── DisclosureAccessoryDemo.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── DisclosureAccessoryDemo.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── Styles.xml │ └── packages.config │ ├── DisclosureAccessoryDemo.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── DisclosureAccessoryDemo.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 │ ├── DisclosureAccessoryDemo.iOS │ ├── AccessorizedCellRenderer.cs │ ├── AppDelegate.cs │ ├── DisclosureAccessoryDemo.iOS.csproj │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── DisclosureAccessoryDemo │ ├── App.cs │ ├── AttributesListPage.xaml │ ├── AttributesListPage.xaml.cs │ ├── DisclosureAccessoryDemo.csproj │ ├── MainNavigationPage.xaml │ ├── MainNavigationPage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StylesListPage.xaml │ ├── StylesListPage.xaml.cs │ ├── TextSizeListPage.xaml │ ├── TextSizeListPage.xaml.cs │ ├── Xaml │ ├── AccessoryType.cs │ └── CellExtensions.cs │ └── packages.config ├── FSharpForms ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── FSharpForms.Droid.fsproj │ ├── MainActivity.fs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.fs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.fs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ └── packages.config ├── FSharpForms.sln ├── FSharpForms │ ├── App.fs │ ├── AssemblyInfo.fs │ ├── FSharpForms.fsproj │ ├── Login.xaml │ ├── LoginPage.fs │ └── packages.config └── iOS │ ├── AppDelegate.fs │ ├── Assets.xcassets │ ├── AppIcons.appiconset │ │ └── Contents.json │ └── Contents.json │ ├── Entitlements.plist │ ├── FSharpForms.iOS.fsproj │ ├── Info.plist │ ├── LaunchScreen.storyboard │ └── packages.config ├── FakeDemo ├── .nuget │ └── NuGet.exe ├── App.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── FakeDemo.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ └── packages.config ├── FakeDemo.UnitTests │ ├── FakeDemo.UnitTests.csproj │ ├── Test.cs │ └── packages.config ├── FakeDemo.csproj ├── FakeDemo.sln ├── MainPage.xaml ├── MainPage.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── UITests │ ├── AppInitializer.cs │ ├── FakeDemo.UITests.csproj │ ├── Tests.cs │ └── packages.config ├── build.fsx ├── build.sh ├── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── FakeDemo.iOS.csproj │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ └── packages.config └── packages.config ├── HiddenActivityIconDemo ├── HiddenActivityIconDemo.sln └── HiddenActivityIconDemo │ ├── HiddenActivityIconDemo.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── HiddenActivityIconDemo.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ ├── drawable │ │ │ └── icon.png │ │ └── values │ │ │ └── Styles.xml │ └── packages.config │ ├── HiddenActivityIconDemo.WinPhone │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── AlignmentGrid.png │ │ ├── ApplicationIcon.png │ │ └── Tiles │ │ │ ├── FlipCycleTileLarge.png │ │ │ ├── FlipCycleTileMedium.png │ │ │ ├── FlipCycleTileSmall.png │ │ │ ├── IconicTileMediumLarge.png │ │ │ └── IconicTileSmall.png │ ├── HiddenActivityIconDemo.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 │ ├── HiddenActivityIconDemo.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── HiddenActivityIconDemo.iOS.csproj │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── HiddenActivityIconDemo │ ├── App.cs │ ├── AttributesListPage.xaml │ ├── AttributesListPage.xaml.cs │ ├── HiddenActivityIconDemo.csproj │ ├── MainNavigationPage.xaml │ ├── MainNavigationPage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StylesListPage.xaml │ ├── StylesListPage.xaml.cs │ ├── TextSizeListPage.xaml │ ├── TextSizeListPage.xaml.cs │ └── packages.config ├── LICENSE ├── LightBox ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── LightBox.Droid.csproj │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ └── packages.config ├── LightBox.sln ├── LightBox │ ├── LightBox.cs │ ├── LightBox.csproj │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── UITests │ ├── AppInitializer.cs │ ├── LightBox.UITests.csproj │ ├── Tests.cs │ └── packages.config └── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── LightBox.iOS.csproj │ ├── Main.cs │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── LaunchScreen.storyboard │ └── packages.config ├── PhoneWordFSharp ├── PhoneWordFSharp.Core │ ├── AssemblyInfo.fs │ ├── MainPage.fs │ ├── PhoneTranslator.fs │ ├── PhoneWordFSharp.Core.fsproj │ └── packages.config ├── PhoneWordFSharp.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── GettingStarted.Xamarin │ ├── MainActivity.fs │ ├── OpenUrl.fs │ ├── PhoneWordFSharp.Droid.fsproj │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.fs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.fs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ └── packages.config ├── PhoneWordFSharp.Test │ ├── AssemblyInfo.fs │ ├── PhoneTranslatorTests.fs │ ├── PhoneWordFSharp.Test.fsproj │ ├── app.config │ └── packages.config ├── PhoneWordFSharp.UITest │ ├── AssemblyInfo.fs │ ├── CrossPlatformTests.fs │ ├── PhoneWordFSharp.UITest.fsproj │ ├── app.config │ ├── iOSTests.fs │ └── packages.config ├── PhoneWordFSharp.iOS │ ├── AppDelegate.fs │ ├── Entitlements.plist │ ├── Info.plist │ ├── OpenUrl.fs │ ├── PhoneWordFSharp.iOS.fsproj │ ├── Resources │ │ └── Default-568h@2x.png │ └── packages.config └── PhoneWordFSharp.sln ├── PropertyDependencyDemo ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── PropertyDependencyDemo.Droid.csproj │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ └── packages.config ├── PropertyDependencyDemo.sln ├── PropertyDependencyDemo │ ├── Mvvm │ │ ├── DelegateCommand.cs │ │ ├── LinqExtensions.cs │ │ ├── ObservableExtensions.cs │ │ ├── ObservableObject.cs │ │ ├── PropertyDependency.cs │ │ └── ReflectionExtensions.cs │ ├── MyPage.xaml │ ├── MyPage.xaml.cs │ ├── MyViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PropertyDependencyDemo.cs │ ├── PropertyDependencyDemo.csproj │ └── packages.config ├── UITests │ ├── AppInitializer.cs │ ├── PropertyDependencyDemo.UITests.csproj │ ├── Tests.cs │ └── packages.config └── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── Main.cs │ ├── PropertyDependencyDemo.iOS.csproj │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── LaunchScreen.storyboard │ └── packages.config ├── README.md ├── SecondaryToolbarDemo ├── SecondaryToolbarDemo.sln ├── SecondaryToolbarDemo │ ├── MainAppPage.xaml │ ├── MainAppPage.xaml.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SecondaryToolbarDemo.cs │ ├── SecondaryToolbarDemo.csproj │ └── packages.config └── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── Main.cs │ ├── PatchedNavigationRenderer.cs │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── LaunchScreen.storyboard │ ├── SecondaryToolbarDemo.iOS.csproj │ ├── ToolbarRenderer.cs │ └── packages.config ├── ShareExample ├── App.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ ├── ShareExample.Droid.csproj │ └── packages.config ├── Properties │ └── AssemblyInfo.cs ├── ShareExample.csproj ├── ShareExample.sln ├── ShareImagePage.xaml ├── ShareImagePage.xaml.cs ├── ShareImageViewModel.cs ├── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── SecondaryToolbarRenderer.cs │ ├── ShareExample.iOS.csproj │ └── packages.config └── packages.config ├── TextStylesDemo ├── TextStylesDemo.sln └── TextStylesDemo │ ├── TextStylesDemo.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ ├── TextStylesDemo.Droid.csproj │ └── packages.config │ ├── TextStylesDemo.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 │ ├── TextStylesDemo.WinPhone.csproj │ ├── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png │ └── packages.config │ ├── TextStylesDemo.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── TextStylesDemo.iOS.csproj │ ├── iTunesArtwork │ ├── iTunesArtwork@2x │ └── packages.config │ └── TextStylesDemo │ ├── App.cs │ ├── AttributesListPage.xaml │ ├── AttributesListPage.xaml.cs │ ├── MainNavigationPage.xaml │ ├── MainNavigationPage.xaml.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── StylesListPage.xaml │ ├── StylesListPage.xaml.cs │ ├── TextSizeListPage.xaml │ ├── TextSizeListPage.xaml.cs │ ├── TextStylesDemo.csproj │ └── packages.config ├── UITestDemo ├── Add.cs ├── App.cs ├── DetailPage.xaml ├── DetailPage.xaml.cs ├── Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.designer.cs │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ ├── UITestDemo.Droid.csproj │ └── packages.config ├── MainPage.xaml ├── MainPage.xaml.cs ├── MainPageViewModel.cs ├── Properties │ └── AssemblyInfo.cs ├── UITestDemo.UnitTests │ ├── Test.fs │ ├── UITestDemo.UnitTests.fsproj │ ├── app.config │ └── packages.config ├── UITestDemo.csproj ├── UITestDemo.sln ├── UITests │ ├── AppInitializer.cs │ ├── Tests.cs │ ├── UITestDemo.UITests.csproj │ └── packages.config ├── iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── ITunesArtwork │ ├── ITunesArtwork@2x │ ├── Info.plist │ ├── Main.cs │ ├── Resources │ │ ├── Default-568h@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ ├── Default@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ └── LaunchScreen.storyboard │ ├── UITestDemo.iOS.csproj │ └── packages.config └── packages.config └── WinPhoneThemesDemo ├── .gitignore ├── WinPhoneThemesDemo.sln └── WinPhoneThemesDemo ├── WinPhoneThemesDemo.Droid ├── Assets │ └── AboutAssets.txt ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── Resources │ ├── AboutResources.txt │ ├── Resource.Designer.cs │ ├── drawable-hdpi │ │ └── icon.png │ ├── drawable-xhdpi │ │ └── icon.png │ ├── drawable-xxhdpi │ │ └── icon.png │ ├── drawable │ │ └── icon.png │ └── values │ │ └── Styles.xml ├── WinPhoneThemesDemo.Droid.csproj └── packages.config ├── WinPhoneThemesDemo.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 ├── WinPhoneThemesDemo.WinPhone.csproj └── packages.config ├── WinPhoneThemesDemo.iOS ├── AppDelegate.cs ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ └── LaunchScreen.storyboard ├── WinPhoneThemesDemo.iOS.csproj ├── iTunesArtwork ├── iTunesArtwork@2x └── packages.config └── WinPhoneThemesDemo ├── App.cs ├── AttributesListPage.xaml ├── AttributesListPage.xaml.cs ├── MainNavigationPage.xaml ├── MainNavigationPage.xaml.cs ├── Properties └── AssemblyInfo.cs ├── StylesListPage.xaml ├── StylesListPage.xaml.cs ├── TextSizeListPage.xaml ├── TextSizeListPage.xaml.cs ├── WinPhoneThemesDemo.csproj └── packages.config /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/.gitignore -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo.sln -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/DisclosureAccessoryDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/DisclosureAccessoryDemo.Droid.csproj -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/MainActivity.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/Resources/values/Styles.xml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.Droid/packages.config -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/App.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/DisclosureAccessoryDemo.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/DisclosureAccessoryDemo.WinPhone.csproj -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.WinPhone/packages.config -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/AccessorizedCellRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/AccessorizedCellRenderer.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/DisclosureAccessoryDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/DisclosureAccessoryDemo.iOS.csproj -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Info.plist -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Main.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/iTunesArtwork -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.iOS/packages.config -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/App.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/AttributesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/AttributesListPage.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/AttributesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/AttributesListPage.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo.csproj -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/MainNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/MainNavigationPage.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/MainNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/MainNavigationPage.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/StylesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/StylesListPage.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/StylesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/StylesListPage.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/TextSizeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/TextSizeListPage.xaml -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/TextSizeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/TextSizeListPage.xaml.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Xaml/AccessoryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Xaml/AccessoryType.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Xaml/CellExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/Xaml/CellExtensions.cs -------------------------------------------------------------------------------- /DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/DisclosureAccessoryDemo/DisclosureAccessoryDemo/DisclosureAccessoryDemo/packages.config -------------------------------------------------------------------------------- /FSharpForms/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /FSharpForms/Droid/FSharpForms.Droid.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/FSharpForms.Droid.fsproj -------------------------------------------------------------------------------- /FSharpForms/Droid/MainActivity.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/MainActivity.fs -------------------------------------------------------------------------------- /FSharpForms/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /FSharpForms/Droid/Properties/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Properties/AssemblyInfo.fs -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/Resource.designer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/Resource.designer.fs -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /FSharpForms/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /FSharpForms/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/Droid/packages.config -------------------------------------------------------------------------------- /FSharpForms/FSharpForms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms.sln -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/App.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/App.fs -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/AssemblyInfo.fs -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/FSharpForms.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/FSharpForms.fsproj -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/Login.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/Login.xaml -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/LoginPage.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/LoginPage.fs -------------------------------------------------------------------------------- /FSharpForms/FSharpForms/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/FSharpForms/packages.config -------------------------------------------------------------------------------- /FSharpForms/iOS/AppDelegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/AppDelegate.fs -------------------------------------------------------------------------------- /FSharpForms/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/Assets.xcassets/AppIcons.appiconset/Contents.json -------------------------------------------------------------------------------- /FSharpForms/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /FSharpForms/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/Entitlements.plist -------------------------------------------------------------------------------- /FSharpForms/iOS/FSharpForms.iOS.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/FSharpForms.iOS.fsproj -------------------------------------------------------------------------------- /FSharpForms/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/Info.plist -------------------------------------------------------------------------------- /FSharpForms/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FSharpForms/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FSharpForms/iOS/packages.config -------------------------------------------------------------------------------- /FakeDemo/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/.nuget/NuGet.exe -------------------------------------------------------------------------------- /FakeDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/App.cs -------------------------------------------------------------------------------- /FakeDemo/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /FakeDemo/Droid/FakeDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/FakeDemo.Droid.csproj -------------------------------------------------------------------------------- /FakeDemo/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/MainActivity.cs -------------------------------------------------------------------------------- /FakeDemo/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /FakeDemo/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /FakeDemo/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /FakeDemo/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Droid/packages.config -------------------------------------------------------------------------------- /FakeDemo/FakeDemo.UnitTests/FakeDemo.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/FakeDemo.UnitTests/FakeDemo.UnitTests.csproj -------------------------------------------------------------------------------- /FakeDemo/FakeDemo.UnitTests/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/FakeDemo.UnitTests/Test.cs -------------------------------------------------------------------------------- /FakeDemo/FakeDemo.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/FakeDemo.UnitTests/packages.config -------------------------------------------------------------------------------- /FakeDemo/FakeDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/FakeDemo.csproj -------------------------------------------------------------------------------- /FakeDemo/FakeDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/FakeDemo.sln -------------------------------------------------------------------------------- /FakeDemo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/MainPage.xaml -------------------------------------------------------------------------------- /FakeDemo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/MainPage.xaml.cs -------------------------------------------------------------------------------- /FakeDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /FakeDemo/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /FakeDemo/UITests/FakeDemo.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/UITests/FakeDemo.UITests.csproj -------------------------------------------------------------------------------- /FakeDemo/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/UITests/Tests.cs -------------------------------------------------------------------------------- /FakeDemo/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/UITests/packages.config -------------------------------------------------------------------------------- /FakeDemo/build.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/build.fsx -------------------------------------------------------------------------------- /FakeDemo/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/build.sh -------------------------------------------------------------------------------- /FakeDemo/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /FakeDemo/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Entitlements.plist -------------------------------------------------------------------------------- /FakeDemo/iOS/FakeDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/FakeDemo.iOS.csproj -------------------------------------------------------------------------------- /FakeDemo/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/ITunesArtwork -------------------------------------------------------------------------------- /FakeDemo/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /FakeDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Info.plist -------------------------------------------------------------------------------- /FakeDemo/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Main.cs -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Default.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /FakeDemo/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FakeDemo/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/iOS/packages.config -------------------------------------------------------------------------------- /FakeDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/FakeDemo/packages.config -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo.sln -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/HiddenActivityIconDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/HiddenActivityIconDemo.Droid.csproj -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/MainActivity.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/Resources/values/Styles.xml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.Droid/packages.config -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/App.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/HiddenActivityIconDemo.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/HiddenActivityIconDemo.WinPhone.csproj -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.WinPhone/packages.config -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/HiddenActivityIconDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/HiddenActivityIconDemo.iOS.csproj -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Info.plist -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Main.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/iTunesArtwork -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.iOS/packages.config -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/App.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/AttributesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/AttributesListPage.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/AttributesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/AttributesListPage.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo.csproj -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/MainNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/MainNavigationPage.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/MainNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/MainNavigationPage.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/StylesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/StylesListPage.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/StylesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/StylesListPage.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/TextSizeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/TextSizeListPage.xaml -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/TextSizeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/TextSizeListPage.xaml.cs -------------------------------------------------------------------------------- /HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/HiddenActivityIconDemo/HiddenActivityIconDemo/HiddenActivityIconDemo/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LICENSE -------------------------------------------------------------------------------- /LightBox/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /LightBox/Droid/LightBox.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/LightBox.Droid.csproj -------------------------------------------------------------------------------- /LightBox/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/MainActivity.cs -------------------------------------------------------------------------------- /LightBox/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /LightBox/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LightBox/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /LightBox/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /LightBox/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /LightBox/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /LightBox/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /LightBox/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /LightBox/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/Droid/packages.config -------------------------------------------------------------------------------- /LightBox/LightBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox.sln -------------------------------------------------------------------------------- /LightBox/LightBox/LightBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/LightBox.cs -------------------------------------------------------------------------------- /LightBox/LightBox/LightBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/LightBox.csproj -------------------------------------------------------------------------------- /LightBox/LightBox/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/MainPage.xaml -------------------------------------------------------------------------------- /LightBox/LightBox/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/MainPage.xaml.cs -------------------------------------------------------------------------------- /LightBox/LightBox/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LightBox/LightBox/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/LightBox/packages.config -------------------------------------------------------------------------------- /LightBox/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /LightBox/UITests/LightBox.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/UITests/LightBox.UITests.csproj -------------------------------------------------------------------------------- /LightBox/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/UITests/Tests.cs -------------------------------------------------------------------------------- /LightBox/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/UITests/packages.config -------------------------------------------------------------------------------- /LightBox/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /LightBox/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Entitlements.plist -------------------------------------------------------------------------------- /LightBox/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/ITunesArtwork -------------------------------------------------------------------------------- /LightBox/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /LightBox/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Info.plist -------------------------------------------------------------------------------- /LightBox/iOS/LightBox.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/LightBox.iOS.csproj -------------------------------------------------------------------------------- /LightBox/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Main.cs -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Default.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /LightBox/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LightBox/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/LightBox/iOS/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Core/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Core/AssemblyInfo.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Core/MainPage.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Core/MainPage.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Core/PhoneTranslator.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Core/PhoneTranslator.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Core/PhoneWordFSharp.Core.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Core/PhoneWordFSharp.Core.fsproj -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Core/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Core/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/GettingStarted.Xamarin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/GettingStarted.Xamarin -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/MainActivity.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/MainActivity.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/OpenUrl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/OpenUrl.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/PhoneWordFSharp.Droid.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/PhoneWordFSharp.Droid.fsproj -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Properties/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Properties/AssemblyInfo.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/Resource.designer.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/Resource.designer.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/layout/Main.axml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/layout/Main.axml -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/values/Strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/Resources/values/Strings.xml -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Droid/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Test/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Test/AssemblyInfo.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Test/PhoneTranslatorTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Test/PhoneTranslatorTests.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Test/PhoneWordFSharp.Test.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Test/PhoneWordFSharp.Test.fsproj -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Test/app.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.Test/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.Test/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/AssemblyInfo.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/CrossPlatformTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/CrossPlatformTests.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/PhoneWordFSharp.UITest.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/PhoneWordFSharp.UITest.fsproj -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/app.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/iOSTests.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/iOSTests.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.UITest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.UITest/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/AppDelegate.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/AppDelegate.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/Entitlements.plist -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/Info.plist -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/OpenUrl.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/OpenUrl.fs -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/PhoneWordFSharp.iOS.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/PhoneWordFSharp.iOS.fsproj -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.iOS/packages.config -------------------------------------------------------------------------------- /PhoneWordFSharp/PhoneWordFSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PhoneWordFSharp/PhoneWordFSharp.sln -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/MainActivity.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/PropertyDependencyDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/PropertyDependencyDemo.Droid.csproj -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/Droid/packages.config -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo.sln -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/DelegateCommand.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/LinqExtensions.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ObservableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ObservableExtensions.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ObservableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ObservableObject.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/PropertyDependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/PropertyDependency.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Mvvm/ReflectionExtensions.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/MyPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/MyPage.xaml -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/MyPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/MyPage.xaml.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/MyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/MyViewModel.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/PropertyDependencyDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/PropertyDependencyDemo.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/PropertyDependencyDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/PropertyDependencyDemo.csproj -------------------------------------------------------------------------------- /PropertyDependencyDemo/PropertyDependencyDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/PropertyDependencyDemo/packages.config -------------------------------------------------------------------------------- /PropertyDependencyDemo/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/UITests/PropertyDependencyDemo.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/UITests/PropertyDependencyDemo.UITests.csproj -------------------------------------------------------------------------------- /PropertyDependencyDemo/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/UITests/Tests.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/UITests/packages.config -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Entitlements.plist -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/ITunesArtwork -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Info.plist -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Main.cs -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/PropertyDependencyDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/PropertyDependencyDemo.iOS.csproj -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Default.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /PropertyDependencyDemo/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/PropertyDependencyDemo/iOS/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/README.md -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo.sln -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/MainAppPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/MainAppPage.xaml -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/MainAppPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/MainAppPage.xaml.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/SecondaryToolbarDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/SecondaryToolbarDemo.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/SecondaryToolbarDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/SecondaryToolbarDemo.csproj -------------------------------------------------------------------------------- /SecondaryToolbarDemo/SecondaryToolbarDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/SecondaryToolbarDemo/packages.config -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Entitlements.plist -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/ITunesArtwork -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Info.plist -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Main.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/PatchedNavigationRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/PatchedNavigationRenderer.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Default.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/SecondaryToolbarDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/SecondaryToolbarDemo.iOS.csproj -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/ToolbarRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/ToolbarRenderer.cs -------------------------------------------------------------------------------- /SecondaryToolbarDemo/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/SecondaryToolbarDemo/iOS/packages.config -------------------------------------------------------------------------------- /ShareExample/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/App.cs -------------------------------------------------------------------------------- /ShareExample/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /ShareExample/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/MainActivity.cs -------------------------------------------------------------------------------- /ShareExample/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /ShareExample/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /ShareExample/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /ShareExample/Droid/ShareExample.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/ShareExample.Droid.csproj -------------------------------------------------------------------------------- /ShareExample/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Droid/packages.config -------------------------------------------------------------------------------- /ShareExample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ShareExample/ShareExample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/ShareExample.csproj -------------------------------------------------------------------------------- /ShareExample/ShareExample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/ShareExample.sln -------------------------------------------------------------------------------- /ShareExample/ShareImagePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/ShareImagePage.xaml -------------------------------------------------------------------------------- /ShareExample/ShareImagePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/ShareImagePage.xaml.cs -------------------------------------------------------------------------------- /ShareExample/ShareImageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/ShareImageViewModel.cs -------------------------------------------------------------------------------- /ShareExample/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /ShareExample/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Entitlements.plist -------------------------------------------------------------------------------- /ShareExample/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/ITunesArtwork -------------------------------------------------------------------------------- /ShareExample/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /ShareExample/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Info.plist -------------------------------------------------------------------------------- /ShareExample/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Main.cs -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Default.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /ShareExample/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ShareExample/iOS/SecondaryToolbarRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/SecondaryToolbarRenderer.cs -------------------------------------------------------------------------------- /ShareExample/iOS/ShareExample.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/ShareExample.iOS.csproj -------------------------------------------------------------------------------- /ShareExample/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/iOS/packages.config -------------------------------------------------------------------------------- /ShareExample/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/ShareExample/packages.config -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo.sln -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/MainActivity.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/TextStylesDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/TextStylesDemo.Droid.csproj -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.Droid/packages.config -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/App.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/TextStylesDemo.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/TextStylesDemo.WinPhone.csproj -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.WinPhone/packages.config -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Info.plist -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Main.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/TextStylesDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/TextStylesDemo.iOS.csproj -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/iTunesArtwork -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo.iOS/packages.config -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/App.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/AttributesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/AttributesListPage.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/AttributesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/AttributesListPage.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/MainNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/MainNavigationPage.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/MainNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/MainNavigationPage.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/StylesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/StylesListPage.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/StylesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/StylesListPage.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/TextSizeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/TextSizeListPage.xaml -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/TextSizeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/TextSizeListPage.xaml.cs -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/TextStylesDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/TextStylesDemo.csproj -------------------------------------------------------------------------------- /TextStylesDemo/TextStylesDemo/TextStylesDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/TextStylesDemo/TextStylesDemo/TextStylesDemo/packages.config -------------------------------------------------------------------------------- /UITestDemo/Add.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Add.cs -------------------------------------------------------------------------------- /UITestDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/App.cs -------------------------------------------------------------------------------- /UITestDemo/DetailPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/DetailPage.xaml -------------------------------------------------------------------------------- /UITestDemo/DetailPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/DetailPage.xaml.cs -------------------------------------------------------------------------------- /UITestDemo/Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /UITestDemo/Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/MainActivity.cs -------------------------------------------------------------------------------- /UITestDemo/Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /UITestDemo/Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /UITestDemo/Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /UITestDemo/Droid/UITestDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/UITestDemo.Droid.csproj -------------------------------------------------------------------------------- /UITestDemo/Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Droid/packages.config -------------------------------------------------------------------------------- /UITestDemo/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/MainPage.xaml -------------------------------------------------------------------------------- /UITestDemo/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/MainPage.xaml.cs -------------------------------------------------------------------------------- /UITestDemo/MainPageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/MainPageViewModel.cs -------------------------------------------------------------------------------- /UITestDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.UnitTests/Test.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.UnitTests/Test.fs -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.UnitTests/UITestDemo.UnitTests.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.UnitTests/UITestDemo.UnitTests.fsproj -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.UnitTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.UnitTests/app.config -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.UnitTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.UnitTests/packages.config -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.csproj -------------------------------------------------------------------------------- /UITestDemo/UITestDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITestDemo.sln -------------------------------------------------------------------------------- /UITestDemo/UITests/AppInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITests/AppInitializer.cs -------------------------------------------------------------------------------- /UITestDemo/UITests/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITests/Tests.cs -------------------------------------------------------------------------------- /UITestDemo/UITests/UITestDemo.UITests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITests/UITestDemo.UITests.csproj -------------------------------------------------------------------------------- /UITestDemo/UITests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/UITests/packages.config -------------------------------------------------------------------------------- /UITestDemo/iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/AppDelegate.cs -------------------------------------------------------------------------------- /UITestDemo/iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Entitlements.plist -------------------------------------------------------------------------------- /UITestDemo/iOS/ITunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/ITunesArtwork -------------------------------------------------------------------------------- /UITestDemo/iOS/ITunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/ITunesArtwork@2x -------------------------------------------------------------------------------- /UITestDemo/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Info.plist -------------------------------------------------------------------------------- /UITestDemo/iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Main.cs -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Default.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /UITestDemo/iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /UITestDemo/iOS/UITestDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/UITestDemo.iOS.csproj -------------------------------------------------------------------------------- /UITestDemo/iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/iOS/packages.config -------------------------------------------------------------------------------- /UITestDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/UITestDemo/packages.config -------------------------------------------------------------------------------- /WinPhoneThemesDemo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/.gitignore -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo.sln -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/MainActivity.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/AboutResources.txt -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/Resource.Designer.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/values/Styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/Resources/values/Styles.xml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/WinPhoneThemesDemo.Droid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/WinPhoneThemesDemo.Droid.csproj -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.Droid/packages.config -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/App.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/App.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/LocalizedStrings.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/MainPage.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/MainPage.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/AppManifest.xml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Properties/WMAppManifest.xml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/README_FIRST.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/README_FIRST.txt -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Resources/AppResources.Designer.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Resources/AppResources.resx -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Add.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Cancel.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Check.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Delete.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/Toolkit.Content/ApplicationBar.Select.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/WinPhoneThemesDemo.WinPhone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/WinPhoneThemesDemo.WinPhone.csproj -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.WinPhone/packages.config -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Entitlements.plist -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Info.plist -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Main.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/WinPhoneThemesDemo.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/WinPhoneThemesDemo.iOS.csproj -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/iTunesArtwork -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.iOS/packages.config -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/App.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/App.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/AttributesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/AttributesListPage.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/AttributesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/AttributesListPage.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/MainNavigationPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/MainNavigationPage.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/MainNavigationPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/MainNavigationPage.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/StylesListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/StylesListPage.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/StylesListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/StylesListPage.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/TextSizeListPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/TextSizeListPage.xaml -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/TextSizeListPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/TextSizeListPage.xaml.cs -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo.csproj -------------------------------------------------------------------------------- /WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wintellect/XamarinSamples/HEAD/WinPhoneThemesDemo/WinPhoneThemesDemo/WinPhoneThemesDemo/packages.config --------------------------------------------------------------------------------