├── .gitattributes ├── .gitignore ├── Multiselect_Example.sln ├── Multiselect_Example.v12.suo ├── Multiselect_Example ├── Multiselect_Example.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── Multiselect_Example.Droid.csproj │ ├── Multiselect_Example.Droid.csproj.user │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ ├── ic_done_black_24dp.png │ │ │ ├── ic_done_white_24dp.png │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ ├── ic_done_black_24dp.png │ │ │ └── ic_done_white_24dp.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_done_black_24dp.png │ │ │ ├── ic_done_white_24dp.png │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ ├── ic_done_black_24dp.png │ │ │ ├── ic_done_white_24dp.png │ │ │ └── icon.png │ │ └── drawable │ │ │ └── icon.png │ └── packages.config ├── Multiselect_Example.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 │ ├── Multiselect_Example.WinPhone.csproj │ ├── Properties │ │ ├── AppManifest.xml │ │ ├── AssemblyInfo.cs │ │ └── WMAppManifest.xml │ ├── Resources │ │ ├── AppResources.Designer.cs │ │ └── AppResources.resx │ └── SplashScreenImage.jpg ├── Multiselect_Example.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Multiselect_Example.iOS.csproj │ ├── 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 └── Multiselect_Example │ ├── App.cs │ ├── Multiselect_Example.csproj │ ├── Multiselect_Example.csproj.user │ ├── Properties │ └── AssemblyInfo.cs │ ├── SampleListviewItem.cs │ ├── SamplePage.xaml │ ├── SamplePage.xaml.cs │ ├── SampleViewModel.cs │ ├── SelectableCell.cs │ └── packages.config ├── README.md └── packages ├── WPtoolkit.4.2013.08.16 ├── WPtoolkit.4.2013.08.16.nupkg ├── content │ ├── README_FIRST.txt │ └── Toolkit.Content │ │ ├── ApplicationBar.Add.png │ │ ├── ApplicationBar.Cancel.png │ │ ├── ApplicationBar.Check.png │ │ ├── ApplicationBar.Delete.png │ │ └── ApplicationBar.Select.png └── lib │ ├── sl3-wp │ └── Microsoft.Phone.Controls.Toolkit.dll │ ├── sl4-windowsphone71 │ ├── Microsoft.Phone.Controls.Toolkit.dll │ ├── cs-CZ │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── da-DK │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── de-DE │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── el-GR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── en-GB │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── es-ES │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fi-FI │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fr-FR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── hu-HU │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── id-ID │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── it-IT │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ja-JP │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ko-KR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ms-MY │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── nb-NO │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── nl-NL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── pl-PL │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── pt-BR │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ru-RU │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sv-SE │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── zh-CN │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ └── zh-TW │ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ └── wp8 │ ├── Microsoft.Phone.Controls.Toolkit.dll │ ├── ar-SA │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── az-Latn-AZ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── be-BY │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── bg-BG │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ca-ES │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── cs-CZ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── da-DK │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── de-DE │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── el-GR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── en-GB │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── es-ES │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── es-MX │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── et-EE │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fa-IR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fi-FI │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fil-PH │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fr-CA │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── fr-FR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── he-IL │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── hi-IN │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── hr-HR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── hu-HU │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── id-ID │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── it-IT │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ja-JP │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── kk-KZ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ko-KR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── lt-LT │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── lv-LV │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── mk-MK │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ms-MY │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── nb-NO │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── nl-NL │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── pl-PL │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── pt-BR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── pt-PT │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ro-RO │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── ru-RU │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sk-SK │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sl-SI │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sq-AL │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sr-Latn-CS │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── sv-SE │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── th-TH │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── tr-TR │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── uk-UA │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── uz-Latn-UZ │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── vi-VN │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ ├── zh-CN │ └── Microsoft.Phone.Controls.Toolkit.resources.dll │ └── zh-TW │ └── Microsoft.Phone.Controls.Toolkit.resources.dll ├── Xamarin.Android.Support.v4.22.2.1.0 ├── Xamarin.Android.Support.v4.22.2.1.0.nupkg └── lib │ └── MonoAndroid403 │ └── Xamarin.Android.Support.v4.dll ├── Xamarin.Forms.1.4.4.6392 ├── Xamarin.Forms.1.4.4.6392.nupkg ├── build │ └── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ │ ├── Xamarin.Forms.Build.Tasks.dll │ │ ├── Xamarin.Forms.Core.dll │ │ ├── Xamarin.Forms.Xaml.dll │ │ └── Xamarin.Forms.targets └── lib │ ├── MonoAndroid10 │ ├── FormsViewGroup.dll │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.Android.dll │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ ├── MonoTouch10 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Platform.iOS.Classic.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ ├── WP80 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.WP8.dll │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ ├── Xamarin.iOS10 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Platform.iOS.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ ├── portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ ├── win81 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.WinRT.Tablet.dll │ ├── Xamarin.Forms.Platform.WinRT.Tablet.pri │ ├── Xamarin.Forms.Platform.WinRT.Tablet │ │ ├── Resources.xbf │ │ ├── TabletResources.xbf │ │ └── Xamarin.Forms.Platform.WinRT.Tablet.xr.xml │ ├── Xamarin.Forms.Platform.WinRT.dll │ ├── Xamarin.Forms.Platform.WinRT.pri │ ├── Xamarin.Forms.Platform.WinRT │ │ ├── FormsTextBox.xbf │ │ ├── PageControl.xbf │ │ ├── StepperControl.xbf │ │ └── Xamarin.Forms.Platform.WinRT.xr.xml │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml │ └── wpa81 │ ├── Xamarin.Forms.Core.dll │ ├── Xamarin.Forms.Core.xml │ ├── Xamarin.Forms.Platform.WinRT.Phone.dll │ ├── Xamarin.Forms.Platform.WinRT.Phone.pri │ ├── Xamarin.Forms.Platform.WinRT.Phone │ ├── PhoneResources.xbf │ ├── Resources.xbf │ ├── SearchBox.xbf │ └── Xamarin.Forms.Platform.WinRT.Phone.xr.xml │ ├── Xamarin.Forms.Platform.WinRT.dll │ ├── Xamarin.Forms.Platform.WinRT.pri │ ├── Xamarin.Forms.Platform.WinRT │ ├── FormsTextBox.xbf │ ├── PageControl.xbf │ ├── StepperControl.xbf │ └── Xamarin.Forms.Platform.WinRT.xr.xml │ ├── Xamarin.Forms.Platform.dll │ ├── Xamarin.Forms.Xaml.dll │ └── Xamarin.Forms.Xaml.xml └── repositories.config /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk 19 | 20 | # ========================= 21 | # Operating System Files 22 | # ========================= 23 | 24 | # OSX 25 | # ========================= 26 | 27 | .DS_Store 28 | .AppleDouble 29 | .LSOverride 30 | 31 | # Thumbnails 32 | ._* 33 | 34 | # Files that might appear on external disk 35 | .Spotlight-V100 36 | .Trashes 37 | 38 | # Directories potentially created on remote AFP share 39 | .AppleDB 40 | .AppleDesktop 41 | Network Trash Folder 42 | Temporary Items 43 | .apdisk 44 | -------------------------------------------------------------------------------- /Multiselect_Example.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.31101.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Multiselect_Example", "Multiselect_Example\Multiselect_Example\Multiselect_Example.csproj", "{AFA973BF-B855-4920-AB90-29CE63066CD5}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Multiselect_Example.iOS", "Multiselect_Example\Multiselect_Example.iOS\Multiselect_Example.iOS.csproj", "{CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}" 9 | EndProject 10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Multiselect_Example.Droid", "Multiselect_Example\Multiselect_Example.Droid\Multiselect_Example.Droid.csproj", "{79489B5D-B70C-41F7-82C3-14ECDDA06839}" 11 | EndProject 12 | Global 13 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 14 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU 15 | Ad-Hoc|iPhone = Ad-Hoc|iPhone 16 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator 17 | Ad-Hoc|Mixed Platforms = Ad-Hoc|Mixed Platforms 18 | AppStore|Any CPU = AppStore|Any CPU 19 | AppStore|iPhone = AppStore|iPhone 20 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator 21 | AppStore|Mixed Platforms = AppStore|Mixed Platforms 22 | Debug|Any CPU = Debug|Any CPU 23 | Debug|iPhone = Debug|iPhone 24 | Debug|iPhoneSimulator = Debug|iPhoneSimulator 25 | Debug|Mixed Platforms = Debug|Mixed Platforms 26 | Release|Any CPU = Release|Any CPU 27 | Release|iPhone = Release|iPhone 28 | Release|iPhoneSimulator = Release|iPhoneSimulator 29 | Release|Mixed Platforms = Release|Mixed Platforms 30 | EndGlobalSection 31 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 32 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 33 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 34 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 35 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 36 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU 37 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU 38 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 39 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|Any CPU.Build.0 = Release|Any CPU 40 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|iPhone.ActiveCfg = Release|Any CPU 41 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 42 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU 43 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU 44 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 45 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|Any CPU.Build.0 = Debug|Any CPU 46 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|iPhone.ActiveCfg = Debug|Any CPU 47 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 48 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 49 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 50 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|Any CPU.ActiveCfg = Release|Any CPU 51 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|Any CPU.Build.0 = Release|Any CPU 52 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|iPhone.ActiveCfg = Release|Any CPU 53 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 54 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 55 | {AFA973BF-B855-4920-AB90-29CE63066CD5}.Release|Mixed Platforms.Build.0 = Release|Any CPU 56 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone 57 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone 58 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone 59 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator 60 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator 61 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|Mixed Platforms.ActiveCfg = Ad-Hoc|iPhone 62 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Ad-Hoc|Mixed Platforms.Build.0 = Ad-Hoc|iPhone 63 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone 64 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|iPhone.ActiveCfg = AppStore|iPhone 65 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|iPhone.Build.0 = AppStore|iPhone 66 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator 67 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator 68 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|Mixed Platforms.ActiveCfg = AppStore|iPhone 69 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.AppStore|Mixed Platforms.Build.0 = AppStore|iPhone 70 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|Any CPU.ActiveCfg = Debug|iPhone 71 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|iPhone.ActiveCfg = Debug|iPhone 72 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|iPhone.Build.0 = Debug|iPhone 73 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator 74 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator 75 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|Mixed Platforms.ActiveCfg = Debug|iPhone 76 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Debug|Mixed Platforms.Build.0 = Debug|iPhone 77 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|Any CPU.ActiveCfg = Release|iPhone 78 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|iPhone.ActiveCfg = Release|iPhone 79 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|iPhone.Build.0 = Release|iPhone 80 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator 81 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator 82 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|Mixed Platforms.ActiveCfg = Release|iPhone 83 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098}.Release|Mixed Platforms.Build.0 = Release|iPhone 84 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU 85 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU 86 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU 87 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU 88 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU 89 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Mixed Platforms.ActiveCfg = Release|Any CPU 90 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Mixed Platforms.Build.0 = Release|Any CPU 91 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Ad-Hoc|Mixed Platforms.Deploy.0 = Release|Any CPU 92 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Any CPU.ActiveCfg = Release|Any CPU 93 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Any CPU.Build.0 = Release|Any CPU 94 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Any CPU.Deploy.0 = Release|Any CPU 95 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|iPhone.ActiveCfg = Release|Any CPU 96 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU 97 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Mixed Platforms.ActiveCfg = Release|Any CPU 98 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Mixed Platforms.Build.0 = Release|Any CPU 99 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.AppStore|Mixed Platforms.Deploy.0 = Release|Any CPU 100 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 101 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Any CPU.Build.0 = Debug|Any CPU 102 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 103 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|iPhone.ActiveCfg = Debug|Any CPU 104 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU 105 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU 106 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU 107 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Debug|Mixed Platforms.Deploy.0 = Debug|Any CPU 108 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Any CPU.ActiveCfg = Release|Any CPU 109 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Any CPU.Build.0 = Release|Any CPU 110 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Any CPU.Deploy.0 = Release|Any CPU 111 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|iPhone.ActiveCfg = Release|Any CPU 112 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU 113 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU 114 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Mixed Platforms.Build.0 = Release|Any CPU 115 | {79489B5D-B70C-41F7-82C3-14ECDDA06839}.Release|Mixed Platforms.Deploy.0 = Release|Any CPU 116 | EndGlobalSection 117 | GlobalSection(SolutionProperties) = preSolution 118 | HideSolutionNode = FALSE 119 | EndGlobalSection 120 | EndGlobal 121 | -------------------------------------------------------------------------------- /Multiselect_Example.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example.v12.suo -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- 1 | Any raw assets you want to be deployed with your application can be placed in 2 | this directory (and child directories) and given a Build Action of "AndroidAsset". 3 | 4 | These files will be deployed with you package and will be accessible using Android's 5 | AssetManager, like this: 6 | 7 | public class ReadAsset : Activity 8 | { 9 | protected override void OnCreate (Bundle bundle) 10 | { 11 | base.OnCreate (bundle); 12 | 13 | InputStream input = Assets.Open ("my_asset.txt"); 14 | } 15 | } 16 | 17 | Additionally, some Android functions will automatically load asset files: 18 | 19 | Typeface tf = Typeface.CreateFromAsset (Context.Assets, "fonts/samplefont.ttf"); 20 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/MainActivity.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | using Android.App; 4 | using Android.Content.PM; 5 | using Android.Runtime; 6 | using Android.Views; 7 | using Android.Widget; 8 | using Android.OS; 9 | 10 | namespace Multiselect_Example.Droid 11 | { 12 | [Activity(Label = "Multiselect_Example", Icon = "@drawable/icon", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)] 13 | public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity 14 | { 15 | protected override void OnCreate(Bundle bundle) 16 | { 17 | base.OnCreate(bundle); 18 | 19 | global::Xamarin.Forms.Forms.Init(this, bundle); 20 | LoadApplication(new App()); 21 | } 22 | } 23 | } 24 | 25 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Multiselect_Example.Droid.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 8.0.30703 7 | 2.0 8 | {79489B5D-B70C-41F7-82C3-14ECDDA06839} 9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Library 11 | Properties 12 | Multiselect_Example.Droid 13 | Multiselect_Example.Droid 14 | 512 15 | true 16 | Resources\Resource.Designer.cs 17 | Off 18 | Properties\AndroidManifest.xml 19 | true 20 | armeabi,armeabi-v7a,x86 21 | 22 | 23 | 24 | 25 | v5.0 26 | 23a34012 27 | 28 | 29 | true 30 | full 31 | false 32 | bin\Debug\ 33 | DEBUG;TRACE 34 | prompt 35 | 4 36 | True 37 | None 38 | 39 | True 40 | False 41 | False 42 | armeabi,armeabi-v7a,x86 43 | 44 | 45 | 1G 46 | Xamarin 47 | False 48 | True 49 | 50 | 51 | pdbonly 52 | true 53 | bin\Release\ 54 | TRACE 55 | prompt 56 | 4 57 | False 58 | SdkOnly 59 | 60 | 61 | 62 | False 63 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\MonoAndroid10\FormsViewGroup.dll 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | False 73 | ..\..\packages\Xamarin.Android.Support.v4.22.2.1.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll 74 | 75 | 76 | False 77 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\MonoAndroid10\Xamarin.Forms.Core.dll 78 | 79 | 80 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\MonoAndroid10\Xamarin.Forms.Platform.dll 81 | 82 | 83 | False 84 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll 85 | 86 | 87 | False 88 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | Multiselect_Example 121 | 122 | 123 | 124 | 125 | 126 | 127 | This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 128 | 129 | 130 | 131 | 138 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Multiselect_Example.Droid.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | AVD_for_Nexus_S_by_Google 5 | ShowAllFiles 6 | 7 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using Android.App; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("Multiselect_Example.Droid")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("Multiselect_Example.Droid")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: ComVisible(false)] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | 32 | // Add some common permissions, these can be removed if not needed 33 | [assembly: UsesPermission(Android.Manifest.Permission.Internet)] 34 | [assembly: UsesPermission(Android.Manifest.Permission.WriteExternalStorage)] 35 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/AboutResources.txt: -------------------------------------------------------------------------------- 1 | Images, layout descriptions, binary blobs and string dictionaries can be included 2 | in your application as resource files. Various Android APIs are designed to 3 | operate on the resource IDs instead of dealing with images, strings or binary blobs 4 | directly. 5 | 6 | For example, a sample Android app that contains a user interface layout (main.xml), 7 | an internationalization string table (strings.xml) and some icons (drawable-XXX/icon.png) 8 | would keep its resources in the "Resources" directory of the application: 9 | 10 | Resources/ 11 | drawable-hdpi/ 12 | icon.png 13 | 14 | drawable-ldpi/ 15 | icon.png 16 | 17 | drawable-mdpi/ 18 | icon.png 19 | 20 | layout/ 21 | main.xml 22 | 23 | values/ 24 | strings.xml 25 | 26 | In order to get the build system to recognize Android resources, set the build action to 27 | "AndroidResource". The native Android APIs do not operate directly with filenames, but 28 | instead operate on resource IDs. When you compile an Android application that uses resources, 29 | the build system will package the resources for distribution and generate a class called 30 | "Resource" that contains the tokens for each one of the resources included. For example, 31 | for the above Resources layout, this is what the Resource class would expose: 32 | 33 | public class Resource { 34 | public class drawable { 35 | public const int icon = 0x123; 36 | } 37 | 38 | public class layout { 39 | public const int main = 0x456; 40 | } 41 | 42 | public class strings { 43 | public const int first_string = 0xabc; 44 | public const int second_string = 0xbcd; 45 | } 46 | } 47 | 48 | You would then use R.drawable.icon to reference the drawable/icon.png file, or Resource.layout.main 49 | to reference the layout/main.xml file, or Resource.strings.first_string to reference the first 50 | string in the dictionary file values/strings.xml. 51 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/Resource.Designer.cs: -------------------------------------------------------------------------------- 1 | #pragma warning disable 1591 2 | //------------------------------------------------------------------------------ 3 | // 4 | // This code was generated by a tool. 5 | // Runtime Version:4.0.30319.18408 6 | // 7 | // Changes to this file may cause incorrect behavior and will be lost if 8 | // the code is regenerated. 9 | // 10 | //------------------------------------------------------------------------------ 11 | 12 | [assembly: global::Android.Runtime.ResourceDesignerAttribute("Multiselect_Example.Droid.Resource", IsApplication=true)] 13 | 14 | namespace Multiselect_Example.Droid 15 | { 16 | 17 | 18 | [System.CodeDom.Compiler.GeneratedCodeAttribute("Xamarin.Android.Build.Tasks", "1.0.0.0")] 19 | public partial class Resource 20 | { 21 | 22 | static Resource() 23 | { 24 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 25 | } 26 | 27 | public static void UpdateIdValues() 28 | { 29 | global::Xamarin.Forms.Platform.Resource.String.ApplicationName = global::Multiselect_Example.Droid.Resource.String.ApplicationName; 30 | global::Xamarin.Forms.Platform.Resource.String.Hello = global::Multiselect_Example.Droid.Resource.String.Hello; 31 | } 32 | 33 | public partial class Attribute 34 | { 35 | 36 | static Attribute() 37 | { 38 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 39 | } 40 | 41 | private Attribute() 42 | { 43 | } 44 | } 45 | 46 | public partial class Drawable 47 | { 48 | 49 | // aapt resource value: 0x7f020000 50 | public const int ic_done_black_24dp = 2130837504; 51 | 52 | // aapt resource value: 0x7f020001 53 | public const int ic_done_white_24dp = 2130837505; 54 | 55 | // aapt resource value: 0x7f020002 56 | public const int icon = 2130837506; 57 | 58 | static Drawable() 59 | { 60 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 61 | } 62 | 63 | private Drawable() 64 | { 65 | } 66 | } 67 | 68 | public partial class String 69 | { 70 | 71 | // aapt resource value: 0x7f030001 72 | public const int ApplicationName = 2130903041; 73 | 74 | // aapt resource value: 0x7f030000 75 | public const int Hello = 2130903040; 76 | 77 | static String() 78 | { 79 | global::Android.Runtime.ResourceIdManager.UpdateIdValues(); 80 | } 81 | 82 | private String() 83 | { 84 | } 85 | } 86 | } 87 | } 88 | #pragma warning restore 1591 89 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/ic_done_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/ic_done_black_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-mdpi/ic_done_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-mdpi/ic_done_black_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-mdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-mdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/ic_done_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/ic_done_black_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/ic_done_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/ic_done_black_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/Resources/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.Droid/Resources/drawable/icon.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.Droid/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/App.xaml: -------------------------------------------------------------------------------- 1 |  7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Diagnostics; 3 | using System.Resources; 4 | using System.Windows; 5 | using System.Windows.Markup; 6 | using System.Windows.Navigation; 7 | using Microsoft.Phone.Controls; 8 | using Microsoft.Phone.Shell; 9 | using Multiselect_Example.WinPhone.Resources; 10 | 11 | namespace Multiselect_Example.WinPhone 12 | { 13 | public partial class App : Application 14 | { 15 | /// 16 | /// Provides easy access to the root frame of the Phone Application. 17 | /// 18 | /// The root frame of the Phone Application. 19 | public static PhoneApplicationFrame RootFrame { get; private set; } 20 | 21 | /// 22 | /// Constructor for the Application object. 23 | /// 24 | public App() 25 | { 26 | // Global handler for uncaught exceptions. 27 | UnhandledException += Application_UnhandledException; 28 | 29 | // Standard XAML initialization 30 | InitializeComponent(); 31 | 32 | // Phone-specific initialization 33 | InitializePhoneApplication(); 34 | 35 | // Language display initialization 36 | InitializeLanguage(); 37 | 38 | // Show graphics profiling information while debugging. 39 | if (Debugger.IsAttached) 40 | { 41 | // Display the current frame rate counters. 42 | Application.Current.Host.Settings.EnableFrameRateCounter = true; 43 | 44 | // Show the areas of the app that are being redrawn in each frame. 45 | //Application.Current.Host.Settings.EnableRedrawRegions = true; 46 | 47 | // Enable non-production analysis visualization mode, 48 | // which shows areas of a page that are handed off to GPU with a colored overlay. 49 | //Application.Current.Host.Settings.EnableCacheVisualization = true; 50 | 51 | // Prevent the screen from turning off while under the debugger by disabling 52 | // the application's idle detection. 53 | // Caution:- Use this under debug mode only. Application that disables user idle detection will continue to run 54 | // and consume battery power when the user is not using the phone. 55 | PhoneApplicationService.Current.UserIdleDetectionMode = IdleDetectionMode.Disabled; 56 | } 57 | 58 | } 59 | 60 | // Code to execute when the application is launching (eg, from Start) 61 | // This code will not execute when the application is reactivated 62 | private void Application_Launching(object sender, LaunchingEventArgs e) 63 | { 64 | } 65 | 66 | // Code to execute when the application is activated (brought to foreground) 67 | // This code will not execute when the application is first launched 68 | private void Application_Activated(object sender, ActivatedEventArgs e) 69 | { 70 | } 71 | 72 | // Code to execute when the application is deactivated (sent to background) 73 | // This code will not execute when the application is closing 74 | private void Application_Deactivated(object sender, DeactivatedEventArgs e) 75 | { 76 | } 77 | 78 | // Code to execute when the application is closing (eg, user hit Back) 79 | // This code will not execute when the application is deactivated 80 | private void Application_Closing(object sender, ClosingEventArgs e) 81 | { 82 | } 83 | 84 | // Code to execute if a navigation fails 85 | private void RootFrame_NavigationFailed(object sender, NavigationFailedEventArgs e) 86 | { 87 | if (Debugger.IsAttached) 88 | { 89 | // A navigation has failed; break into the debugger 90 | Debugger.Break(); 91 | } 92 | } 93 | 94 | // Code to execute on Unhandled Exceptions 95 | private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e) 96 | { 97 | if (Debugger.IsAttached) 98 | { 99 | // An unhandled exception has occurred; break into the debugger 100 | Debugger.Break(); 101 | } 102 | } 103 | 104 | #region Phone application initialization 105 | 106 | // Avoid double-initialization 107 | private bool phoneApplicationInitialized = false; 108 | 109 | // Do not add any additional code to this method 110 | private void InitializePhoneApplication() 111 | { 112 | if (phoneApplicationInitialized) 113 | return; 114 | 115 | // Create the frame but don't set it as RootVisual yet; this allows the splash 116 | // screen to remain active until the application is ready to render. 117 | RootFrame = new PhoneApplicationFrame(); 118 | RootFrame.Navigated += CompleteInitializePhoneApplication; 119 | 120 | // Handle navigation failures 121 | RootFrame.NavigationFailed += RootFrame_NavigationFailed; 122 | 123 | // Handle reset requests for clearing the backstack 124 | RootFrame.Navigated += CheckForResetNavigation; 125 | 126 | // Ensure we don't initialize again 127 | phoneApplicationInitialized = true; 128 | } 129 | 130 | // Do not add any additional code to this method 131 | private void CompleteInitializePhoneApplication(object sender, NavigationEventArgs e) 132 | { 133 | // Set the root visual to allow the application to render 134 | if (RootVisual != RootFrame) 135 | RootVisual = RootFrame; 136 | 137 | // Remove this handler since it is no longer needed 138 | RootFrame.Navigated -= CompleteInitializePhoneApplication; 139 | } 140 | 141 | private void CheckForResetNavigation(object sender, NavigationEventArgs e) 142 | { 143 | // If the app has received a 'reset' navigation, then we need to check 144 | // on the next navigation to see if the page stack should be reset 145 | if (e.NavigationMode == NavigationMode.Reset) 146 | RootFrame.Navigated += ClearBackStackAfterReset; 147 | } 148 | 149 | private void ClearBackStackAfterReset(object sender, NavigationEventArgs e) 150 | { 151 | // Unregister the event so it doesn't get called again 152 | RootFrame.Navigated -= ClearBackStackAfterReset; 153 | 154 | // Only clear the stack for 'new' (forward) and 'refresh' navigations 155 | if (e.NavigationMode != NavigationMode.New && e.NavigationMode != NavigationMode.Refresh) 156 | return; 157 | 158 | // For UI consistency, clear the entire page stack 159 | while (RootFrame.RemoveBackEntry() != null) 160 | { 161 | ; // do nothing 162 | } 163 | } 164 | 165 | #endregion 166 | 167 | // Initialize the app's font and flow direction as defined in its localized resource strings. 168 | // 169 | // To ensure that the font of your application is aligned with its supported languages and that the 170 | // FlowDirection for each of those languages follows its traditional direction, ResourceLanguage 171 | // and ResourceFlowDirection should be initialized in each resx file to match these values with that 172 | // file's culture. For example: 173 | // 174 | // AppResources.es-ES.resx 175 | // ResourceLanguage's value should be "es-ES" 176 | // ResourceFlowDirection's value should be "LeftToRight" 177 | // 178 | // AppResources.ar-SA.resx 179 | // ResourceLanguage's value should be "ar-SA" 180 | // ResourceFlowDirection's value should be "RightToLeft" 181 | // 182 | // For more info on localizing Windows Phone apps see http://go.microsoft.com/fwlink/?LinkId=262072. 183 | // 184 | private void InitializeLanguage() 185 | { 186 | try 187 | { 188 | // Set the font to match the display language defined by the 189 | // ResourceLanguage resource string for each supported language. 190 | // 191 | // Fall back to the font of the neutral language if the Display 192 | // language of the phone is not supported. 193 | // 194 | // If a compiler error is hit then ResourceLanguage is missing from 195 | // the resource file. 196 | RootFrame.Language = XmlLanguage.GetLanguage(AppResources.ResourceLanguage); 197 | 198 | // Set the FlowDirection of all elements under the root frame based 199 | // on the ResourceFlowDirection resource string for each 200 | // supported language. 201 | // 202 | // If a compiler error is hit then ResourceFlowDirection is missing from 203 | // the resource file. 204 | FlowDirection flow = (FlowDirection)Enum.Parse(typeof(FlowDirection), AppResources.ResourceFlowDirection); 205 | RootFrame.FlowDirection = flow; 206 | } 207 | catch 208 | { 209 | // If an exception is caught here it is most likely due to either 210 | // ResourceLangauge not being correctly set to a supported language 211 | // code or ResourceFlowDirection is set to a value other than LeftToRight 212 | // or RightToLeft. 213 | 214 | if (Debugger.IsAttached) 215 | { 216 | Debugger.Break(); 217 | } 218 | 219 | throw; 220 | } 221 | } 222 | } 223 | } 224 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/AlignmentGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/AlignmentGrid.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/ApplicationIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/ApplicationIcon.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileLarge.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileMedium.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/FlipCycleTileSmall.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/IconicTileMediumLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/IconicTileMediumLarge.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/IconicTileSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/Assets/Tiles/IconicTileSmall.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/LocalizedStrings.cs: -------------------------------------------------------------------------------- 1 | using Multiselect_Example.WinPhone.Resources; 2 | 3 | namespace Multiselect_Example.WinPhone 4 | { 5 | /// 6 | /// Provides access to string resources. 7 | /// 8 | public class LocalizedStrings 9 | { 10 | private static AppResources _localizedResources = new AppResources(); 11 | 12 | public AppResources LocalizedResources { get { return _localizedResources; } } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/MainPage.xaml: -------------------------------------------------------------------------------- 1 |  16 | 17 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/MainPage.xaml.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Net; 5 | using System.Windows; 6 | using System.Windows.Controls; 7 | using System.Windows.Navigation; 8 | using Microsoft.Phone.Controls; 9 | using Microsoft.Phone.Shell; 10 | 11 | namespace Multiselect_Example.WinPhone 12 | { 13 | public partial class MainPage : global::Xamarin.Forms.Platform.WinPhone.FormsApplicationPage 14 | { 15 | public MainPage() 16 | { 17 | InitializeComponent(); 18 | SupportedOrientations = SupportedPageOrientation.PortraitOrLandscape; 19 | 20 | global::Xamarin.Forms.Forms.Init(); 21 | LoadApplication(new Multiselect_Example.App()); 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Multiselect_Example.WinPhone.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | AnyCPU 6 | 10.0.20506 7 | 2.0 8 | c146c87c-74c1-4f6b-ae8c-aaa212b1c285 9 | {C089C8C0-30E0-4E22-80C0-CE093F111A43};{fae04ec0-301f-11d3-bf4b-00c04f79efbc} 10 | Library 11 | Properties 12 | Multiselect_Example.WinPhone 13 | Multiselect_Example.WinPhone 14 | WindowsPhone 15 | v8.0 16 | $(TargetFrameworkVersion) 17 | true 18 | 19 | 20 | true 21 | true 22 | PhoneApp1_$(Configuration)_$(Platform).xap 23 | Properties\AppManifest.xml 24 | Multiselect_Example.WinPhone.App 25 | true 26 | 11.0 27 | true 28 | 29 | 30 | true 31 | full 32 | false 33 | Bin\Debug 34 | DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE 35 | true 36 | true 37 | prompt 38 | 4 39 | 40 | 41 | pdbonly 42 | true 43 | Bin\Release 44 | TRACE;SILVERLIGHT;WINDOWS_PHONE 45 | true 46 | true 47 | prompt 48 | 4 49 | 50 | 51 | true 52 | full 53 | false 54 | Bin\x86\Debug 55 | DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE 56 | true 57 | true 58 | prompt 59 | 4 60 | 61 | 62 | pdbonly 63 | true 64 | Bin\x86\Release 65 | TRACE;SILVERLIGHT;WINDOWS_PHONE 66 | true 67 | true 68 | prompt 69 | 4 70 | 71 | 72 | true 73 | full 74 | false 75 | Bin\ARM\Debug 76 | DEBUG;TRACE;SILVERLIGHT;WINDOWS_PHONE 77 | true 78 | true 79 | prompt 80 | 4 81 | 82 | 83 | pdbonly 84 | true 85 | Bin\ARM\Release 86 | TRACE;SILVERLIGHT;WINDOWS_PHONE 87 | true 88 | true 89 | prompt 90 | 4 91 | 92 | 93 | 94 | App.xaml 95 | 96 | 97 | 98 | MainPage.xaml 99 | 100 | 101 | 102 | True 103 | True 104 | AppResources.resx 105 | 106 | 107 | 108 | 109 | Designer 110 | MSBuild:Compile 111 | 112 | 113 | Designer 114 | MSBuild:Compile 115 | 116 | 117 | 118 | 119 | 120 | Designer 121 | 122 | 123 | 124 | 125 | PreserveNewest 126 | 127 | 128 | 129 | PreserveNewest 130 | 131 | 132 | PreserveNewest 133 | 134 | 135 | PreserveNewest 136 | 137 | 138 | PreserveNewest 139 | 140 | 141 | PreserveNewest 142 | 143 | 144 | PreserveNewest 145 | 146 | 147 | 148 | 149 | PublicResXFileCodeGenerator 150 | AppResources.Designer.cs 151 | 152 | 153 | 154 | 155 | Multiselect_Example 156 | 157 | 158 | 159 | 160 | 167 | 168 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | using System.Resources; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("Multiselect_Example.WinPhone")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("Multiselect_Example.WinPhone")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | 18 | // Setting ComVisible to false makes the types in this assembly not visible 19 | // to COM components. If you need to access a type in this assembly from 20 | // COM, set the ComVisible attribute to true on that type. 21 | [assembly: ComVisible(false)] 22 | 23 | // The following GUID is for the ID of the typelib if this project is exposed to COM 24 | [assembly: Guid("65077432-0c92-466b-b68d-911a8ec84f1d")] 25 | 26 | // Version information for an assembly consists of the following four values: 27 | // 28 | // Major Version 29 | // Minor Version 30 | // Build Number 31 | // Revision 32 | // 33 | // You can specify all the values or you can default the Revision and Build Numbers 34 | // by using the '*' as shown below: 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | [assembly: NeutralResourcesLanguageAttribute("en-US")] 38 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Properties/WMAppManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | Assets\ApplicationIcon.png 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | Assets\Tiles\FlipCycleTileSmall.png 21 | 0 22 | Assets\Tiles\FlipCycleTileMedium.png 23 | Multiselect_Example.WinPhone 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Resources/AppResources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.17626 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace Multiselect_Example.WinPhone.Resources 12 | { 13 | using System; 14 | 15 | 16 | /// 17 | /// A strongly-typed resource class, for looking up localized strings, etc. 18 | /// 19 | // This class was auto-generated by the StronglyTypedResourceBuilder 20 | // class via a tool like ResGen or Visual Studio. 21 | // To add or remove a member, edit your .ResX file then rerun ResGen 22 | // with the /str option, or rebuild your VS project. 23 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 24 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 25 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 26 | public class AppResources 27 | { 28 | 29 | private static global::System.Resources.ResourceManager resourceMan; 30 | 31 | private static global::System.Globalization.CultureInfo resourceCulture; 32 | 33 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 34 | internal AppResources() 35 | { 36 | } 37 | 38 | /// 39 | /// Returns the cached ResourceManager instance used by this class. 40 | /// 41 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 42 | public static global::System.Resources.ResourceManager ResourceManager 43 | { 44 | get 45 | { 46 | if (object.ReferenceEquals(resourceMan, null)) 47 | { 48 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Multiselect_Example.WinPhone.Resources.AppResources", typeof(AppResources).Assembly); 49 | resourceMan = temp; 50 | } 51 | return resourceMan; 52 | } 53 | } 54 | 55 | /// 56 | /// Overrides the current thread's CurrentUICulture property for all 57 | /// resource lookups using this strongly typed resource class. 58 | /// 59 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 60 | public static global::System.Globalization.CultureInfo Culture 61 | { 62 | get 63 | { 64 | return resourceCulture; 65 | } 66 | set 67 | { 68 | resourceCulture = value; 69 | } 70 | } 71 | 72 | /// 73 | /// Looks up a localized string similar to LeftToRight. 74 | /// 75 | public static string ResourceFlowDirection 76 | { 77 | get 78 | { 79 | return ResourceManager.GetString("ResourceFlowDirection", resourceCulture); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized string similar to us-EN. 85 | /// 86 | public static string ResourceLanguage 87 | { 88 | get 89 | { 90 | return ResourceManager.GetString("ResourceLanguage", resourceCulture); 91 | } 92 | } 93 | 94 | /// 95 | /// Looks up a localized string similar to MY APPLICATION. 96 | /// 97 | public static string ApplicationTitle 98 | { 99 | get 100 | { 101 | return ResourceManager.GetString("ApplicationTitle", resourceCulture); 102 | } 103 | } 104 | 105 | /// 106 | /// Looks up a localized string similar to button. 107 | /// 108 | public static string AppBarButtonText 109 | { 110 | get 111 | { 112 | return ResourceManager.GetString("AppBarButtonText", resourceCulture); 113 | } 114 | } 115 | 116 | /// 117 | /// Looks up a localized string similar to menu item. 118 | /// 119 | public static string AppBarMenuItemText 120 | { 121 | get 122 | { 123 | return ResourceManager.GetString("AppBarMenuItemText", resourceCulture); 124 | } 125 | } 126 | } 127 | } 128 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/Resources/AppResources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | LeftToRight 122 | Controls the FlowDirection for all elements in the RootFrame. Set to the traditional direction of this resource file's language 123 | 124 | 125 | en-US 126 | Controls the Language and ensures that the font for all elements in the RootFrame aligns with the app's language. Set to the language code of this resource file's language. 127 | 128 | 129 | MY APPLICATION 130 | 131 | 132 | add 133 | 134 | 135 | Menu Item 136 | 137 | 138 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.WinPhone/SplashScreenImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.WinPhone/SplashScreenImage.jpg -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace Multiselect_Example.iOS 9 | { 10 | // The UIApplicationDelegate for the application. This class is responsible for launching the 11 | // User Interface of the application, as well as listening (and optionally responding) to 12 | // application events from iOS. 13 | [Register("AppDelegate")] 14 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate 15 | { 16 | // 17 | // This method is invoked when the application has loaded and is ready to run. In this 18 | // method you should instantiate the window, load the UI into it and then make the window 19 | // visible. 20 | // 21 | // You have 17 seconds to return from this method, or iOS will terminate your application. 22 | // 23 | public override bool FinishedLaunching(UIApplication app, NSDictionary options) 24 | { 25 | global::Xamarin.Forms.Forms.Init(); 26 | LoadApplication(new App()); 27 | 28 | return base.FinishedLaunching(app, options); 29 | } 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Entitlements.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Info.plist: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | UIDeviceFamily 6 | 7 | 1 8 | 2 9 | 10 | UISupportedInterfaceOrientations 11 | 12 | UIInterfaceOrientationPortrait 13 | UIInterfaceOrientationLandscapeLeft 14 | UIInterfaceOrientationLandscapeRight 15 | 16 | UISupportedInterfaceOrientations~ipad 17 | 18 | UIInterfaceOrientationPortrait 19 | UIInterfaceOrientationPortraitUpsideDown 20 | UIInterfaceOrientationLandscapeLeft 21 | UIInterfaceOrientationLandscapeRight 22 | 23 | MinimumOSVersion 24 | 6.0 25 | CFBundleDisplayName 26 | Multiselect_Example 27 | CFBundleIdentifier 28 | com.yourcompany.Multiselect_Example 29 | CFBundleVersion 30 | 1.0 31 | CFBundleIconFiles 32 | 33 | Icon-60@2x 34 | Icon-60@3x 35 | Icon-76 36 | Icon-76@2x 37 | Default 38 | Default@2x 39 | Default-568h@2x 40 | Default-Portrait 41 | Default-Portrait@2x 42 | Icon-Small-40 43 | Icon-Small-40@2x 44 | Icon-Small-40@3x 45 | Icon-Small 46 | Icon-Small@2x 47 | Icon-Small@3x 48 | 49 | UILaunchStoryboardName 50 | LaunchScreen 51 | 52 | 53 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Main.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | 5 | using Foundation; 6 | using UIKit; 7 | 8 | namespace Multiselect_Example.iOS 9 | { 10 | public class Application 11 | { 12 | // This is the main entry point of the application. 13 | static void Main(string[] args) 14 | { 15 | // if you want to use a different Application Delegate class from "AppDelegate" 16 | // you can specify it here. 17 | UIApplication.Main(args, null, "AppDelegate"); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Multiselect_Example.iOS.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Debug 5 | iPhoneSimulator 6 | 8.0.30703 7 | 2.0 8 | {CB83BA3E-B71A-4E11-BE4C-0C6FC175C098} 9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 10 | Exe 11 | Multiselect_Example.iOS 12 | Resources 13 | Multiselect_ExampleiOS 14 | 6ac4f813 15 | 16 | 17 | true 18 | full 19 | false 20 | bin\iPhoneSimulator\Debug 21 | DEBUG 22 | prompt 23 | 4 24 | false 25 | i386, x86_64 26 | None 27 | true 28 | Entitlements.plist 29 | 30 | 31 | none 32 | true 33 | bin\iPhoneSimulator\Release 34 | prompt 35 | 4 36 | None 37 | i386, x86_64 38 | false 39 | Entitlements.plist 40 | 41 | 42 | true 43 | full 44 | false 45 | bin\iPhone\Debug 46 | DEBUG 47 | prompt 48 | 4 49 | false 50 | ARMv7, ARM64 51 | iPhone Developer 52 | true 53 | Entitlements.plist 54 | 55 | 56 | none 57 | true 58 | bin\iPhone\Release 59 | prompt 60 | 4 61 | ARMv7, ARM64 62 | false 63 | iPhone Developer 64 | Entitlements.plist 65 | 66 | 67 | none 68 | True 69 | bin\iPhone\Ad-Hoc 70 | prompt 71 | 4 72 | False 73 | ARMv7, ARM64 74 | True 75 | Automatic:AdHoc 76 | iPhone Distribution 77 | Entitlements.plist 78 | 79 | 80 | none 81 | True 82 | bin\iPhone\AppStore 83 | prompt 84 | 4 85 | False 86 | ARMv7, ARM64 87 | Automatic:AppStore 88 | iPhone Distribution 89 | Entitlements.plist 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | Multiselect_Example 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll 130 | 131 | 132 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll 133 | 134 | 135 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll 136 | 137 | 138 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 147 | 148 | 149 | 150 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("Multiselect_Example.iOS")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Multiselect_Example.iOS")] 13 | [assembly: AssemblyCopyright("Copyright © 2014")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("72bdc44f-c588-44f3-b6df-9aace7daafdd")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Default.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-60@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-60@3x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-76.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-76@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small@2x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/Resources/Icon-Small@3x.png -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/iTunesArtwork: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/iTunesArtwork -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/iTunesArtwork@2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TorbenK/Multiselect_Example/d64cea30a6013e913ca94290a586cb4061478ca5/Multiselect_Example/Multiselect_Example.iOS/iTunesArtwork@2x -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example.iOS/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/App.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | 6 | using Xamarin.Forms; 7 | 8 | namespace Multiselect_Example 9 | { 10 | public class App : Application 11 | { 12 | public App() 13 | { 14 | // The root page of your application 15 | MainPage = new SamplePage(); 16 | } 17 | 18 | protected override void OnStart() 19 | { 20 | // Handle when your app starts 21 | } 22 | 23 | protected override void OnSleep() 24 | { 25 | // Handle when your app sleeps 26 | } 27 | 28 | protected override void OnResume() 29 | { 30 | // Handle when your app resumes 31 | } 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/Multiselect_Example.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 10.0 6 | Debug 7 | AnyCPU 8 | {AFA973BF-B855-4920-AB90-29CE63066CD5} 9 | Library 10 | Properties 11 | Multiselect_Example 12 | Multiselect_Example 13 | v4.5 14 | Profile78 15 | 512 16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 17 | 57652c6d 18 | 19 | 20 | true 21 | full 22 | false 23 | bin\Debug\ 24 | DEBUG;TRACE 25 | prompt 26 | 4 27 | 28 | 29 | pdbonly 30 | true 31 | bin\Release\ 32 | TRACE 33 | prompt 34 | 4 35 | 36 | 37 | 38 | 39 | 40 | 41 | SamplePage.xaml 42 | 43 | 44 | 45 | 46 | 47 | 48 | Designer 49 | MSBuild:UpdateDesignTimeXaml 50 | 51 | 52 | 53 | 54 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Core.dll 55 | 56 | 57 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Platform.dll 58 | 59 | 60 | ..\..\packages\Xamarin.Forms.1.4.4.6392\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+MonoTouch10+Xamarin.iOS10\Xamarin.Forms.Xaml.dll 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. 71 | 72 | 73 | 74 | 81 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/Multiselect_Example.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ShowAllFiles 5 | 6 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Resources; 2 | using System.Reflection; 3 | using System.Runtime.CompilerServices; 4 | using System.Runtime.InteropServices; 5 | 6 | // General Information about an assembly is controlled through the following 7 | // set of attributes. Change these attribute values to modify the information 8 | // associated with an assembly. 9 | [assembly: AssemblyTitle("Multiselect_Example")] 10 | [assembly: AssemblyDescription("")] 11 | [assembly: AssemblyConfiguration("")] 12 | [assembly: AssemblyCompany("")] 13 | [assembly: AssemblyProduct("Multiselect_Example")] 14 | [assembly: AssemblyCopyright("Copyright © 2014")] 15 | [assembly: AssemblyTrademark("")] 16 | [assembly: AssemblyCulture("")] 17 | [assembly: NeutralResourcesLanguage("en")] 18 | 19 | // Version information for an assembly consists of the following four values: 20 | // 21 | // Major Version 22 | // Minor Version 23 | // Build Number 24 | // Revision 25 | // 26 | // You can specify all the values or you can default the Build and Revision Numbers 27 | // by using the '*' as shown below: 28 | // [assembly: AssemblyVersion("1.0.*")] 29 | [assembly: AssemblyVersion("1.0.0.0")] 30 | [assembly: AssemblyFileVersion("1.0.0.0")] 31 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/SampleListviewItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Multiselect_Example 9 | { 10 | public class SampleListviewItem : INotifyPropertyChanged 11 | { 12 | public event PropertyChangedEventHandler PropertyChanged; 13 | 14 | private string _text; 15 | private bool _isSelected; 16 | 17 | public string Text 18 | { 19 | get 20 | { 21 | return this._text; 22 | } 23 | set 24 | { 25 | if(this._text != value) 26 | { 27 | this._text = value; 28 | this.OnPropertyChanged("Text"); 29 | } 30 | } 31 | } 32 | public bool IsSelected 33 | { 34 | get 35 | { 36 | return this._isSelected; 37 | } 38 | set 39 | { 40 | if (this._isSelected != value) 41 | { 42 | this._isSelected = value; 43 | this.OnPropertyChanged("IsSelected"); 44 | } 45 | } 46 | } 47 | 48 | protected virtual void OnPropertyChanged(string propertyName) 49 | { 50 | var ev = this.PropertyChanged; 51 | 52 | if (ev != null) 53 | { 54 | ev(this, new PropertyChangedEventArgs(propertyName)); 55 | } 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /Multiselect_Example/Multiselect_Example/SamplePage.xaml: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | 10 |