├── .gitignore
├── LICENSE
├── MultiSelectDemo.sln
├── MultiSelectDemo
├── MultiSelectDemo.Android
│ ├── MainActivity.cs
│ ├── MultiSelectDemo.Android.csproj
│ ├── Properties
│ │ ├── AndroidManifest.xml
│ │ └── AssemblyInfo.cs
│ ├── Resources
│ │ ├── Resource.Designer.cs
│ │ ├── drawable-hdpi
│ │ │ └── icon.png
│ │ ├── drawable-xhdpi
│ │ │ └── icon.png
│ │ ├── drawable-xxhdpi
│ │ │ └── icon.png
│ │ ├── drawable
│ │ │ └── icon.png
│ │ ├── layout
│ │ │ ├── Tabbar.axml
│ │ │ └── Toolbar.axml
│ │ └── values
│ │ │ └── styles.xml
│ └── packages.config
├── MultiSelectDemo.UWP
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Assets
│ │ ├── LockScreenLogo.scale-100.png
│ │ ├── LockScreenLogo.scale-125.png
│ │ ├── LockScreenLogo.scale-150.png
│ │ ├── LockScreenLogo.scale-200.png
│ │ ├── LockScreenLogo.scale-400.png
│ │ ├── SplashScreen.scale-100.png
│ │ ├── SplashScreen.scale-125.png
│ │ ├── SplashScreen.scale-150.png
│ │ ├── SplashScreen.scale-200.png
│ │ ├── SplashScreen.scale-400.png
│ │ ├── Square150x150Logo.scale-100.png
│ │ ├── Square150x150Logo.scale-125.png
│ │ ├── Square150x150Logo.scale-150.png
│ │ ├── Square150x150Logo.scale-200.png
│ │ ├── Square150x150Logo.scale-400.png
│ │ ├── Square44x44Logo.scale-100.png
│ │ ├── Square44x44Logo.scale-125.png
│ │ ├── Square44x44Logo.scale-150.png
│ │ ├── Square44x44Logo.scale-200.png
│ │ ├── Square44x44Logo.scale-400.png
│ │ ├── Square44x44Logo.targetsize-16_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-256_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-32_altform-unplated.png
│ │ ├── Square44x44Logo.targetsize-48_altform-unplated.png
│ │ ├── StoreLogo.png
│ │ ├── Wide310x150Logo.scale-100.png
│ │ ├── Wide310x150Logo.scale-125.png
│ │ ├── Wide310x150Logo.scale-150.png
│ │ ├── Wide310x150Logo.scale-200.png
│ │ └── Wide310x150Logo.scale-400.png
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── MultiSelectDemo.UWP.csproj
│ ├── Package.appxmanifest
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── Default.rd.xml
│ └── project.json
├── MultiSelectDemo.iOS
│ ├── AppDelegate.cs
│ ├── Entitlements.plist
│ ├── Info.plist
│ ├── Main.cs
│ ├── MultiSelectDemo.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
└── MultiSelectDemo
│ ├── App.xaml
│ ├── App.xaml.cs
│ ├── Controls
│ ├── MultiSelectListView.cs
│ ├── SelectableItem.cs
│ ├── SelectableObservableCollection.cs
│ └── SelectableViewCell.cs
│ ├── MainPage.xaml
│ ├── MainPage.xaml.cs
│ ├── MultiSelectDemo.csproj
│ ├── Properties
│ └── AssemblyInfo.cs
│ └── packages.config
└── README.md
/.gitignore:
--------------------------------------------------------------------------------
1 | ## Ignore Visual Studio temporary files, build results, and
2 | ## files generated by popular Visual Studio add-ons.
3 | ##
4 | ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5 |
6 | # User-specific files
7 | *.suo
8 | *.user
9 | *.userosscache
10 | *.sln.docstates
11 |
12 | # User-specific files (MonoDevelop/Xamarin Studio)
13 | *.userprefs
14 |
15 | # Build results
16 | [Dd]ebug/
17 | [Dd]ebugPublic/
18 | [Rr]elease/
19 | [Rr]eleases/
20 | x64/
21 | x86/
22 | bld/
23 | [Bb]in/
24 | [Oo]bj/
25 | [Ll]og/
26 |
27 | # Visual Studio 2015 cache/options directory
28 | .vs/
29 | # Uncomment if you have tasks that create the project's static files in wwwroot
30 | #wwwroot/
31 |
32 | # MSTest test Results
33 | [Tt]est[Rr]esult*/
34 | [Bb]uild[Ll]og.*
35 |
36 | # NUNIT
37 | *.VisualState.xml
38 | TestResult.xml
39 |
40 | # Build Results of an ATL Project
41 | [Dd]ebugPS/
42 | [Rr]eleasePS/
43 | dlldata.c
44 |
45 | # .NET Core
46 | project.lock.json
47 | project.fragment.lock.json
48 | artifacts/
49 | **/Properties/launchSettings.json
50 |
51 | *_i.c
52 | *_p.c
53 | *_i.h
54 | *.ilk
55 | *.meta
56 | *.obj
57 | *.pch
58 | *.pdb
59 | *.pgc
60 | *.pgd
61 | *.rsp
62 | *.sbr
63 | *.tlb
64 | *.tli
65 | *.tlh
66 | *.tmp
67 | *.tmp_proj
68 | *.log
69 | *.vspscc
70 | *.vssscc
71 | .builds
72 | *.pidb
73 | *.svclog
74 | *.scc
75 |
76 | # Chutzpah Test files
77 | _Chutzpah*
78 |
79 | # Visual C++ cache files
80 | ipch/
81 | *.aps
82 | *.ncb
83 | *.opendb
84 | *.opensdf
85 | *.sdf
86 | *.cachefile
87 | *.VC.db
88 | *.VC.VC.opendb
89 |
90 | # Visual Studio profiler
91 | *.psess
92 | *.vsp
93 | *.vspx
94 | *.sap
95 |
96 | # TFS 2012 Local Workspace
97 | $tf/
98 |
99 | # Guidance Automation Toolkit
100 | *.gpState
101 |
102 | # ReSharper is a .NET coding add-in
103 | _ReSharper*/
104 | *.[Rr]e[Ss]harper
105 | *.DotSettings.user
106 |
107 | # JustCode is a .NET coding add-in
108 | .JustCode
109 |
110 | # TeamCity is a build add-in
111 | _TeamCity*
112 |
113 | # DotCover is a Code Coverage Tool
114 | *.dotCover
115 |
116 | # Visual Studio code coverage results
117 | *.coverage
118 | *.coveragexml
119 |
120 | # NCrunch
121 | _NCrunch_*
122 | .*crunch*.local.xml
123 | nCrunchTemp_*
124 |
125 | # MightyMoose
126 | *.mm.*
127 | AutoTest.Net/
128 |
129 | # Web workbench (sass)
130 | .sass-cache/
131 |
132 | # Installshield output folder
133 | [Ee]xpress/
134 |
135 | # DocProject is a documentation generator add-in
136 | DocProject/buildhelp/
137 | DocProject/Help/*.HxT
138 | DocProject/Help/*.HxC
139 | DocProject/Help/*.hhc
140 | DocProject/Help/*.hhk
141 | DocProject/Help/*.hhp
142 | DocProject/Help/Html2
143 | DocProject/Help/html
144 |
145 | # Click-Once directory
146 | publish/
147 |
148 | # Publish Web Output
149 | *.[Pp]ublish.xml
150 | *.azurePubxml
151 | # TODO: Comment the next line if you want to checkin your web deploy settings
152 | # but database connection strings (with potential passwords) will be unencrypted
153 | *.pubxml
154 | *.publishproj
155 |
156 | # Microsoft Azure Web App publish settings. Comment the next line if you want to
157 | # checkin your Azure Web App publish settings, but sensitive information contained
158 | # in these scripts will be unencrypted
159 | PublishScripts/
160 |
161 | # NuGet Packages
162 | *.nupkg
163 | # The packages folder can be ignored because of Package Restore
164 | **/packages/*
165 | # except build/, which is used as an MSBuild target.
166 | !**/packages/build/
167 | # Uncomment if necessary however generally it will be regenerated when needed
168 | #!**/packages/repositories.config
169 | # NuGet v3's project.json files produces more ignorable files
170 | *.nuget.props
171 | *.nuget.targets
172 |
173 | # Microsoft Azure Build Output
174 | csx/
175 | *.build.csdef
176 |
177 | # Microsoft Azure Emulator
178 | ecf/
179 | rcf/
180 |
181 | # Windows Store app package directories and files
182 | AppPackages/
183 | BundleArtifacts/
184 | Package.StoreAssociation.xml
185 | _pkginfo.txt
186 |
187 | # Visual Studio cache files
188 | # files ending in .cache can be ignored
189 | *.[Cc]ache
190 | # but keep track of directories ending in .cache
191 | !*.[Cc]ache/
192 |
193 | # Others
194 | ClientBin/
195 | ~$*
196 | *~
197 | *.dbmdl
198 | *.dbproj.schemaview
199 | *.jfm
200 | *.pfx
201 | *.publishsettings
202 | orleans.codegen.cs
203 |
204 | # Since there are multiple workflows, uncomment next line to ignore bower_components
205 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
206 | #bower_components/
207 |
208 | # RIA/Silverlight projects
209 | Generated_Code/
210 |
211 | # Backup & report files from converting an old project file
212 | # to a newer Visual Studio version. Backup files are not needed,
213 | # because we have git ;-)
214 | _UpgradeReport_Files/
215 | Backup*/
216 | UpgradeLog*.XML
217 | UpgradeLog*.htm
218 |
219 | # SQL Server files
220 | *.mdf
221 | *.ldf
222 | *.ndf
223 |
224 | # Business Intelligence projects
225 | *.rdl.data
226 | *.bim.layout
227 | *.bim_*.settings
228 |
229 | # Microsoft Fakes
230 | FakesAssemblies/
231 |
232 | # GhostDoc plugin setting file
233 | *.GhostDoc.xml
234 |
235 | # Node.js Tools for Visual Studio
236 | .ntvs_analysis.dat
237 | node_modules/
238 |
239 | # Typescript v1 declaration files
240 | typings/
241 |
242 | # Visual Studio 6 build log
243 | *.plg
244 |
245 | # Visual Studio 6 workspace options file
246 | *.opt
247 |
248 | # Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
249 | *.vbw
250 |
251 | # Visual Studio LightSwitch build output
252 | **/*.HTMLClient/GeneratedArtifacts
253 | **/*.DesktopClient/GeneratedArtifacts
254 | **/*.DesktopClient/ModelManifest.xml
255 | **/*.Server/GeneratedArtifacts
256 | **/*.Server/ModelManifest.xml
257 | _Pvt_Extensions
258 |
259 | # Paket dependency manager
260 | .paket/paket.exe
261 | paket-files/
262 |
263 | # FAKE - F# Make
264 | .fake/
265 |
266 | # JetBrains Rider
267 | .idea/
268 | *.sln.iml
269 |
270 | # CodeRush
271 | .cr/
272 |
273 | # Python Tools for Visual Studio (PTVS)
274 | __pycache__/
275 | *.pyc
276 |
277 | # Cake - Uncomment if you are using it
278 | # tools/**
279 | # !tools/packages.config
280 |
281 | # Telerik's JustMock configuration file
282 | *.jmconfig
283 |
284 | # BizTalk build output
285 | *.btp.cs
286 | *.btm.cs
287 | *.odx.cs
288 | *.xsd.cs
289 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2017 Matthew Leibowitz
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/MultiSelectDemo.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 15
4 | VisualStudioVersion = 15.0.26430.14
5 | MinimumVisualStudioVersion = 10.0.40219.1
6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectDemo.Android", "MultiSelectDemo\MultiSelectDemo.Android\MultiSelectDemo.Android.csproj", "{B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}"
7 | EndProject
8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectDemo", "MultiSelectDemo\MultiSelectDemo\MultiSelectDemo.csproj", "{3CBF16ED-199F-475F-8DC6-0B6215084184}"
9 | EndProject
10 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectDemo.UWP", "MultiSelectDemo\MultiSelectDemo.UWP\MultiSelectDemo.UWP.csproj", "{DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}"
11 | EndProject
12 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MultiSelectDemo.iOS", "MultiSelectDemo\MultiSelectDemo.iOS\MultiSelectDemo.iOS.csproj", "{8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}"
13 | EndProject
14 | Global
15 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
16 | Ad-Hoc|Any CPU = Ad-Hoc|Any CPU
17 | Ad-Hoc|ARM = Ad-Hoc|ARM
18 | Ad-Hoc|iPhone = Ad-Hoc|iPhone
19 | Ad-Hoc|iPhoneSimulator = Ad-Hoc|iPhoneSimulator
20 | Ad-Hoc|x64 = Ad-Hoc|x64
21 | Ad-Hoc|x86 = Ad-Hoc|x86
22 | AppStore|Any CPU = AppStore|Any CPU
23 | AppStore|ARM = AppStore|ARM
24 | AppStore|iPhone = AppStore|iPhone
25 | AppStore|iPhoneSimulator = AppStore|iPhoneSimulator
26 | AppStore|x64 = AppStore|x64
27 | AppStore|x86 = AppStore|x86
28 | Debug|Any CPU = Debug|Any CPU
29 | Debug|ARM = Debug|ARM
30 | Debug|iPhone = Debug|iPhone
31 | Debug|iPhoneSimulator = Debug|iPhoneSimulator
32 | Debug|x64 = Debug|x64
33 | Debug|x86 = Debug|x86
34 | Release|Any CPU = Release|Any CPU
35 | Release|ARM = Release|ARM
36 | Release|iPhone = Release|iPhone
37 | Release|iPhoneSimulator = Release|iPhoneSimulator
38 | Release|x64 = Release|x64
39 | Release|x86 = Release|x86
40 | EndGlobalSection
41 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
42 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
43 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
44 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|Any CPU.Deploy.0 = Release|Any CPU
45 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
46 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
47 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|ARM.Deploy.0 = Release|Any CPU
48 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
49 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
50 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhone.Deploy.0 = Release|Any CPU
51 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
52 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
53 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|Any CPU
54 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
55 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x64.Build.0 = Release|Any CPU
56 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x64.Deploy.0 = Release|Any CPU
57 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
58 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x86.Build.0 = Release|Any CPU
59 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Ad-Hoc|x86.Deploy.0 = Release|Any CPU
60 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
61 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|Any CPU.Build.0 = Release|Any CPU
62 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|Any CPU.Deploy.0 = Release|Any CPU
63 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|ARM.ActiveCfg = Release|Any CPU
64 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|ARM.Build.0 = Release|Any CPU
65 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|ARM.Deploy.0 = Release|Any CPU
66 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhone.ActiveCfg = Release|Any CPU
67 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhone.Build.0 = Release|Any CPU
68 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhone.Deploy.0 = Release|Any CPU
69 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
70 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
71 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|iPhoneSimulator.Deploy.0 = Release|Any CPU
72 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x64.ActiveCfg = Release|Any CPU
73 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x64.Build.0 = Release|Any CPU
74 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x64.Deploy.0 = Release|Any CPU
75 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x86.ActiveCfg = Release|Any CPU
76 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x86.Build.0 = Release|Any CPU
77 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.AppStore|x86.Deploy.0 = Release|Any CPU
78 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
79 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|Any CPU.Build.0 = Debug|Any CPU
80 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
81 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|ARM.ActiveCfg = Debug|Any CPU
82 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|ARM.Build.0 = Debug|Any CPU
83 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|ARM.Deploy.0 = Debug|Any CPU
84 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhone.ActiveCfg = Debug|Any CPU
85 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhone.Build.0 = Debug|Any CPU
86 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhone.Deploy.0 = Debug|Any CPU
87 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
88 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
89 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|iPhoneSimulator.Deploy.0 = Debug|Any CPU
90 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x64.ActiveCfg = Debug|Any CPU
91 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x64.Build.0 = Debug|Any CPU
92 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x64.Deploy.0 = Debug|Any CPU
93 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x86.ActiveCfg = Debug|Any CPU
94 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x86.Build.0 = Debug|Any CPU
95 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Debug|x86.Deploy.0 = Debug|Any CPU
96 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|Any CPU.ActiveCfg = Release|Any CPU
97 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|Any CPU.Build.0 = Release|Any CPU
98 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|Any CPU.Deploy.0 = Release|Any CPU
99 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|ARM.ActiveCfg = Release|Any CPU
100 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|ARM.Build.0 = Release|Any CPU
101 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|ARM.Deploy.0 = Release|Any CPU
102 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhone.ActiveCfg = Release|Any CPU
103 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhone.Build.0 = Release|Any CPU
104 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhone.Deploy.0 = Release|Any CPU
105 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
106 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
107 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|iPhoneSimulator.Deploy.0 = Release|Any CPU
108 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x64.ActiveCfg = Release|Any CPU
109 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x64.Build.0 = Release|Any CPU
110 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x64.Deploy.0 = Release|Any CPU
111 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x86.ActiveCfg = Release|Any CPU
112 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x86.Build.0 = Release|Any CPU
113 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}.Release|x86.Deploy.0 = Release|Any CPU
114 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|Any CPU.ActiveCfg = Release|Any CPU
115 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|Any CPU.Build.0 = Release|Any CPU
116 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|ARM.ActiveCfg = Release|Any CPU
117 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|ARM.Build.0 = Release|Any CPU
118 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|iPhone.ActiveCfg = Release|Any CPU
119 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|iPhone.Build.0 = Release|Any CPU
120 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|Any CPU
121 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|Any CPU
122 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|x64.ActiveCfg = Release|Any CPU
123 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|x64.Build.0 = Release|Any CPU
124 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|x86.ActiveCfg = Release|Any CPU
125 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Ad-Hoc|x86.Build.0 = Release|Any CPU
126 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|Any CPU.ActiveCfg = Release|Any CPU
127 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|Any CPU.Build.0 = Release|Any CPU
128 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|ARM.ActiveCfg = Release|Any CPU
129 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|ARM.Build.0 = Release|Any CPU
130 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|iPhone.ActiveCfg = Release|Any CPU
131 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|iPhone.Build.0 = Release|Any CPU
132 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|iPhoneSimulator.ActiveCfg = Release|Any CPU
133 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|iPhoneSimulator.Build.0 = Release|Any CPU
134 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|x64.ActiveCfg = Release|Any CPU
135 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|x64.Build.0 = Release|Any CPU
136 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|x86.ActiveCfg = Release|Any CPU
137 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.AppStore|x86.Build.0 = Release|Any CPU
138 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
139 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|Any CPU.Build.0 = Debug|Any CPU
140 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|ARM.ActiveCfg = Debug|Any CPU
141 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|ARM.Build.0 = Debug|Any CPU
142 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|iPhone.ActiveCfg = Debug|Any CPU
143 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|iPhone.Build.0 = Debug|Any CPU
144 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
145 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
146 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|x64.ActiveCfg = Debug|Any CPU
147 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|x64.Build.0 = Debug|Any CPU
148 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|x86.ActiveCfg = Debug|Any CPU
149 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Debug|x86.Build.0 = Debug|Any CPU
150 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|Any CPU.ActiveCfg = Release|Any CPU
151 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|Any CPU.Build.0 = Release|Any CPU
152 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|ARM.ActiveCfg = Release|Any CPU
153 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|ARM.Build.0 = Release|Any CPU
154 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|iPhone.ActiveCfg = Release|Any CPU
155 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|iPhone.Build.0 = Release|Any CPU
156 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
157 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
158 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|x64.ActiveCfg = Release|Any CPU
159 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|x64.Build.0 = Release|Any CPU
160 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|x86.ActiveCfg = Release|Any CPU
161 | {3CBF16ED-199F-475F-8DC6-0B6215084184}.Release|x86.Build.0 = Release|Any CPU
162 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|Any CPU.ActiveCfg = Release|x86
163 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|Any CPU.Build.0 = Release|x86
164 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|Any CPU.Deploy.0 = Release|x86
165 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|ARM.ActiveCfg = Release|ARM
166 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|ARM.Build.0 = Release|ARM
167 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|ARM.Deploy.0 = Release|ARM
168 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhone.ActiveCfg = Release|x86
169 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhone.Build.0 = Release|x86
170 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhone.Deploy.0 = Release|x86
171 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Release|x86
172 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhoneSimulator.Build.0 = Release|x86
173 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|iPhoneSimulator.Deploy.0 = Release|x86
174 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x64.ActiveCfg = Release|x64
175 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x64.Build.0 = Release|x64
176 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x64.Deploy.0 = Release|x64
177 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x86.ActiveCfg = Release|x86
178 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x86.Build.0 = Release|x86
179 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Ad-Hoc|x86.Deploy.0 = Release|x86
180 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|Any CPU.ActiveCfg = Release|x86
181 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|Any CPU.Build.0 = Release|x86
182 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|Any CPU.Deploy.0 = Release|x86
183 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|ARM.ActiveCfg = Release|ARM
184 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|ARM.Build.0 = Release|ARM
185 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|ARM.Deploy.0 = Release|ARM
186 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhone.ActiveCfg = Release|x86
187 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhone.Build.0 = Release|x86
188 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhone.Deploy.0 = Release|x86
189 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhoneSimulator.ActiveCfg = Release|x86
190 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhoneSimulator.Build.0 = Release|x86
191 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|iPhoneSimulator.Deploy.0 = Release|x86
192 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x64.ActiveCfg = Release|x64
193 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x64.Build.0 = Release|x64
194 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x64.Deploy.0 = Release|x64
195 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x86.ActiveCfg = Release|x86
196 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x86.Build.0 = Release|x86
197 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.AppStore|x86.Deploy.0 = Release|x86
198 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|Any CPU.ActiveCfg = Debug|x86
199 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|ARM.ActiveCfg = Debug|ARM
200 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|ARM.Build.0 = Debug|ARM
201 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|ARM.Deploy.0 = Debug|ARM
202 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|iPhone.ActiveCfg = Debug|x86
203 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|iPhoneSimulator.ActiveCfg = Debug|x86
204 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x64.ActiveCfg = Debug|x64
205 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x64.Build.0 = Debug|x64
206 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x64.Deploy.0 = Debug|x64
207 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x86.ActiveCfg = Debug|x86
208 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x86.Build.0 = Debug|x86
209 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Debug|x86.Deploy.0 = Debug|x86
210 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|Any CPU.ActiveCfg = Release|x86
211 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|ARM.ActiveCfg = Release|ARM
212 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|ARM.Build.0 = Release|ARM
213 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|ARM.Deploy.0 = Release|ARM
214 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|iPhone.ActiveCfg = Release|x86
215 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|iPhoneSimulator.ActiveCfg = Release|x86
216 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x64.ActiveCfg = Release|x64
217 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x64.Build.0 = Release|x64
218 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x64.Deploy.0 = Release|x64
219 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x86.ActiveCfg = Release|x86
220 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x86.Build.0 = Release|x86
221 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}.Release|x86.Deploy.0 = Release|x86
222 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|Any CPU.ActiveCfg = Ad-Hoc|iPhone
223 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|ARM.ActiveCfg = Ad-Hoc|iPhone
224 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|iPhone.ActiveCfg = Ad-Hoc|iPhone
225 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|iPhone.Build.0 = Ad-Hoc|iPhone
226 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|iPhoneSimulator.ActiveCfg = Ad-Hoc|iPhoneSimulator
227 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|iPhoneSimulator.Build.0 = Ad-Hoc|iPhoneSimulator
228 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|x64.ActiveCfg = Ad-Hoc|iPhone
229 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Ad-Hoc|x86.ActiveCfg = Ad-Hoc|iPhone
230 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|Any CPU.ActiveCfg = AppStore|iPhone
231 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|ARM.ActiveCfg = AppStore|iPhone
232 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|iPhone.ActiveCfg = AppStore|iPhone
233 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|iPhone.Build.0 = AppStore|iPhone
234 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|iPhoneSimulator.ActiveCfg = AppStore|iPhoneSimulator
235 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|iPhoneSimulator.Build.0 = AppStore|iPhoneSimulator
236 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|x64.ActiveCfg = AppStore|iPhone
237 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.AppStore|x86.ActiveCfg = AppStore|iPhone
238 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|Any CPU.ActiveCfg = Debug|iPhone
239 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|ARM.ActiveCfg = Debug|iPhone
240 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|iPhone.ActiveCfg = Debug|iPhone
241 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|iPhone.Build.0 = Debug|iPhone
242 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|iPhoneSimulator.ActiveCfg = Debug|iPhoneSimulator
243 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|iPhoneSimulator.Build.0 = Debug|iPhoneSimulator
244 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|x64.ActiveCfg = Debug|iPhone
245 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Debug|x86.ActiveCfg = Debug|iPhone
246 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|Any CPU.ActiveCfg = Release|iPhone
247 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|ARM.ActiveCfg = Release|iPhone
248 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|iPhone.ActiveCfg = Release|iPhone
249 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|iPhone.Build.0 = Release|iPhone
250 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|iPhoneSimulator.ActiveCfg = Release|iPhoneSimulator
251 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|iPhoneSimulator.Build.0 = Release|iPhoneSimulator
252 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|x64.ActiveCfg = Release|iPhone
253 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}.Release|x86.ActiveCfg = Release|iPhone
254 | EndGlobalSection
255 | GlobalSection(SolutionProperties) = preSolution
256 | HideSolutionNode = FALSE
257 | EndGlobalSection
258 | EndGlobal
259 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/MainActivity.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Android.App;
3 | using Android.Content.PM;
4 | using Android.Runtime;
5 | using Android.Views;
6 | using Android.Widget;
7 | using Android.OS;
8 |
9 | namespace MultiSelectDemo.Droid
10 | {
11 | [Activity(Label = "MultiSelectDemo", Icon = "@drawable/icon", Theme = "@style/MainTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
12 | public class MainActivity : Xamarin.Forms.Platform.Android.FormsAppCompatActivity
13 | {
14 | protected override void OnCreate(Bundle bundle)
15 | {
16 | TabLayoutResource = Resource.Layout.Tabbar;
17 | ToolbarResource = Resource.Layout.Toolbar;
18 |
19 | base.OnCreate(bundle);
20 |
21 | global::Xamarin.Forms.Forms.Init(this, bundle);
22 | LoadApplication(new App());
23 | }
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/MultiSelectDemo.Android.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | AnyCPU
6 | 8.0.30703
7 | 2.0
8 | {B54DCD83-5012-4A43-A6E0-BC9BB3A538F1}
9 | {EFBA0AD7-5A72-4C68-AF49-83D382785DCF};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Library
11 | Properties
12 | MultiSelectDemo.Droid
13 | MultiSelectDemo.Android
14 | 512
15 | true
16 | Resources\Resource.Designer.cs
17 | Off
18 | Properties\AndroidManifest.xml
19 | true
20 | v7.1
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 | true
30 | full
31 | false
32 | bin\Debug\
33 | DEBUG;TRACE
34 | prompt
35 | 4
36 | True
37 | None
38 | armeabi,armeabi-v7a,x86
39 |
40 |
41 | pdbonly
42 | true
43 | bin\Release\
44 | TRACE
45 | prompt
46 | 4
47 | False
48 | SdkOnly
49 |
50 |
51 |
52 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\FormsViewGroup.dll
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 | ..\..\packages\Xamarin.Android.Support.Animated.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Animated.Vector.Drawable.dll
63 |
64 |
65 | ..\..\packages\Xamarin.Android.Support.Design.23.3.0\lib\MonoAndroid43\Xamarin.Android.Support.Design.dll
66 |
67 |
68 | ..\..\packages\Xamarin.Android.Support.v4.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v4.dll
69 |
70 |
71 | ..\..\packages\Xamarin.Android.Support.v7.AppCompat.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.AppCompat.dll
72 |
73 |
74 | ..\..\packages\Xamarin.Android.Support.v7.CardView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.CardView.dll
75 |
76 |
77 | ..\..\packages\Xamarin.Android.Support.v7.MediaRouter.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.MediaRouter.dll
78 |
79 |
80 | ..\..\packages\Xamarin.Android.Support.v7.RecyclerView.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.v7.RecyclerView.dll
81 |
82 |
83 | ..\..\packages\Xamarin.Android.Support.Vector.Drawable.23.3.0\lib\MonoAndroid403\Xamarin.Android.Support.Vector.Drawable.dll
84 |
85 |
86 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Core.dll
87 |
88 |
89 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.dll
90 |
91 |
92 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Platform.Android.dll
93 |
94 |
95 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\MonoAndroid10\Xamarin.Forms.Xaml.dll
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 |
121 |
122 | {de8aa97d-b323-4bcc-976f-1f3da97dc449}
123 | MultiSelectDemo
124 |
125 |
126 |
127 |
128 |
129 |
130 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
131 |
132 |
133 |
134 |
135 |
136 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Properties/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/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("MultiSelectDemo.Android")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("MultiSelectDemo.Android")]
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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-hdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-hdpi/icon.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-xhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-xhdpi/icon.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-xxhdpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable-xxhdpi/icon.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.Android/Resources/drawable/icon.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/layout/Tabbar.axml:
--------------------------------------------------------------------------------
1 |
2 |
12 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/layout/Toolbar.axml:
--------------------------------------------------------------------------------
1 |
9 |
10 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/Resources/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
6 |
7 |
26 |
27 |
30 |
31 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.Android/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/App.xaml:
--------------------------------------------------------------------------------
1 |
7 |
8 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/App.xaml.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using Windows.ApplicationModel;
3 | using Windows.ApplicationModel.Activation;
4 | using Windows.UI.Xaml;
5 | using Windows.UI.Xaml.Controls;
6 | using Windows.UI.Xaml.Navigation;
7 |
8 | namespace MultiSelectDemo.UWP
9 | {
10 | ///
11 | /// Provides application-specific behavior to supplement the default Application class.
12 | ///
13 | sealed partial class App : Application
14 | {
15 | ///
16 | /// Initializes the singleton application object. This is the first line of authored code
17 | /// executed, and as such is the logical equivalent of main() or WinMain().
18 | ///
19 | public App()
20 | {
21 | this.InitializeComponent();
22 | this.Suspending += OnSuspending;
23 | }
24 |
25 | ///
26 | /// Invoked when the application is launched normally by the end user. Other entry points
27 | /// will be used such as when the application is launched to open a specific file.
28 | ///
29 | /// Details about the launch request and process.
30 | protected override void OnLaunched(LaunchActivatedEventArgs e)
31 | {
32 |
33 | #if DEBUG
34 | if (System.Diagnostics.Debugger.IsAttached)
35 | {
36 | this.DebugSettings.EnableFrameRateCounter = true;
37 | }
38 | #endif
39 |
40 | Frame rootFrame = Window.Current.Content as Frame;
41 |
42 | // Do not repeat app initialization when the Window already has content,
43 | // just ensure that the window is active
44 | if (rootFrame == null)
45 | {
46 | // Create a Frame to act as the navigation context and navigate to the first page
47 | rootFrame = new Frame();
48 |
49 | rootFrame.NavigationFailed += OnNavigationFailed;
50 |
51 | Xamarin.Forms.Forms.Init(e);
52 |
53 | if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
54 | {
55 | //TODO: Load state from previously suspended application
56 | }
57 |
58 | // Place the frame in the current Window
59 | Window.Current.Content = rootFrame;
60 | }
61 |
62 | if (rootFrame.Content == null)
63 | {
64 | // When the navigation stack isn't restored navigate to the first page,
65 | // configuring the new page by passing required information as a navigation
66 | // parameter
67 | rootFrame.Navigate(typeof(MainPage), e.Arguments);
68 | }
69 | // Ensure the current window is active
70 | Window.Current.Activate();
71 | }
72 |
73 | ///
74 | /// Invoked when Navigation to a certain page fails
75 | ///
76 | /// The Frame which failed navigation
77 | /// Details about the navigation failure
78 | void OnNavigationFailed(object sender, NavigationFailedEventArgs e)
79 | {
80 | throw new Exception("Failed to load Page " + e.SourcePageType.FullName);
81 | }
82 |
83 | ///
84 | /// Invoked when application execution is being suspended. Application state is saved
85 | /// without knowing whether the application will be terminated or resumed with the contents
86 | /// of memory still intact.
87 | ///
88 | /// The source of the suspend request.
89 | /// Details about the suspend request.
90 | private void OnSuspending(object sender, SuspendingEventArgs e)
91 | {
92 | var deferral = e.SuspendingOperation.GetDeferral();
93 | //TODO: Save application state and stop any background activity
94 | deferral.Complete();
95 | }
96 | }
97 | }
98 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-100.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-125.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-150.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-200.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/LockScreenLogo.scale-400.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-100.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-125.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-150.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-200.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/SplashScreen.scale-400.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-100.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-125.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-150.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-200.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square150x150Logo.scale-400.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-100.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-125.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-150.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-200.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.scale-400.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-16_altform-unplated.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-24_altform-unplated.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-256_altform-unplated.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-32_altform-unplated.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Square44x44Logo.targetsize-48_altform-unplated.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/StoreLogo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/StoreLogo.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-100.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-100.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-125.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-125.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-150.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-150.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-200.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-200.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-400.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.UWP/Assets/Wide310x150Logo.scale-400.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
11 |
12 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | namespace MultiSelectDemo.UWP
2 | {
3 | public sealed partial class MainPage
4 | {
5 | public MainPage()
6 | {
7 | InitializeComponent();
8 |
9 | LoadApplication(new MultiSelectDemo.App());
10 | }
11 | }
12 | }
13 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/MultiSelectDemo.UWP.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | x86
7 | {DACBB6D5-FE88-46BA-9E4D-362EA2B6D435}
8 | AppContainerExe
9 | Properties
10 | MultiSelectDemo.UWP
11 | MultiSelectDemo.UWP
12 | en-US
13 | UAP
14 | 10.0.15063.0
15 | 10.0.10240.0
16 | 14
17 | true
18 | 512
19 | {A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
20 | MultiSelectDemo.UWP_TemporaryKey.pfx
21 |
22 |
23 | true
24 | bin\ARM\Debug\
25 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
26 | ;2008
27 | full
28 | ARM
29 | false
30 | prompt
31 | true
32 |
33 |
34 | bin\ARM\Release\
35 | TRACE;NETFX_CORE;WINDOWS_UWP
36 | true
37 | ;2008
38 | pdbonly
39 | ARM
40 | false
41 | prompt
42 | true
43 | true
44 |
45 |
46 | true
47 | bin\x64\Debug\
48 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
49 | ;2008
50 | full
51 | x64
52 | false
53 | prompt
54 | true
55 |
56 |
57 | bin\x64\Release\
58 | TRACE;NETFX_CORE;WINDOWS_UWP
59 | true
60 | ;2008
61 | pdbonly
62 | x64
63 | false
64 | prompt
65 | true
66 | true
67 |
68 |
69 | true
70 | bin\x86\Debug\
71 | DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP
72 | ;2008
73 | full
74 | x86
75 | false
76 | prompt
77 | true
78 |
79 |
80 | bin\x86\Release\
81 | TRACE;NETFX_CORE;WINDOWS_UWP
82 | true
83 | ;2008
84 | pdbonly
85 | x86
86 | false
87 | prompt
88 | true
89 | true
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 | App.xaml
98 |
99 |
100 | MainPage.xaml
101 |
102 |
103 |
104 |
105 |
106 | Designer
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 | MSBuild:Compile
147 | Designer
148 |
149 |
150 | MSBuild:Compile
151 | Designer
152 |
153 |
154 |
155 |
156 | {de8aa97d-b323-4bcc-976f-1f3da97dc449}
157 | MultiSelectDemo
158 |
159 |
160 |
161 | 14.0
162 |
163 |
164 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Package.appxmanifest:
--------------------------------------------------------------------------------
1 |
2 |
3 |
8 |
9 |
13 |
14 |
15 |
16 |
17 | MultiSelectDemo.UWP
18 | mattl
19 | Assets\StoreLogo.png
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
34 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/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("MultiSelectDemo.UWP")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("MultiSelectDemo.UWP")]
13 | [assembly: AssemblyCopyright("Copyright © 2015")]
14 | [assembly: AssemblyTrademark("")]
15 | [assembly: AssemblyCulture("")]
16 |
17 | // Version information for an assembly consists of the following four values:
18 | //
19 | // Major Version
20 | // Minor Version
21 | // Build Number
22 | // Revision
23 | //
24 | // You can specify all the values or you can default the Build and Revision Numbers
25 | // by using the '*' as shown below:
26 | // [assembly: AssemblyVersion("1.0.*")]
27 | [assembly: AssemblyVersion("1.0.0.0")]
28 | [assembly: AssemblyFileVersion("1.0.0.0")]
29 | [assembly: ComVisible(false)]
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/Properties/Default.rd.xml:
--------------------------------------------------------------------------------
1 |
17 |
18 |
19 |
20 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.UWP/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2",
4 | "Xamarin.Forms": "2.3.4.247"
5 | },
6 | "frameworks": {
7 | "uap10.0": {}
8 | },
9 | "runtimes": {
10 | "win10-arm": {},
11 | "win10-arm-aot": {},
12 | "win10-x86": {},
13 | "win10-x86-aot": {},
14 | "win10-x64": {},
15 | "win10-x64-aot": {}
16 | }
17 | }
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/AppDelegate.cs:
--------------------------------------------------------------------------------
1 | using Foundation;
2 | using UIKit;
3 |
4 | namespace MultiSelectDemo.iOS
5 | {
6 | // The UIApplicationDelegate for the application. This class is responsible for launching the
7 | // User Interface of the application, as well as listening (and optionally responding) to
8 | // application events from iOS.
9 | [Register("AppDelegate")]
10 | public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
11 | {
12 | //
13 | // This method is invoked when the application has loaded and is ready to run. In this
14 | // method you should instantiate the window, load the UI into it and then make the window
15 | // visible.
16 | //
17 | // You have 17 seconds to return from this method, or iOS will terminate your application.
18 | //
19 | public override bool FinishedLaunching(UIApplication app, NSDictionary options)
20 | {
21 | Xamarin.Forms.Forms.Init();
22 | LoadApplication(new App());
23 |
24 | return base.FinishedLaunching(app, options);
25 | }
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Entitlements.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.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 | 8.0
25 | CFBundleDisplayName
26 | MultiSelectDemo
27 | CFBundleIdentifier
28 | com.yourcompany.MultiSelectDemo
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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Main.cs:
--------------------------------------------------------------------------------
1 | using UIKit;
2 |
3 | namespace MultiSelectDemo.iOS
4 | {
5 | public class Application
6 | {
7 | // This is the main entry point of the application.
8 | static void Main(string[] args)
9 | {
10 | // if you want to use a different Application Delegate class from "AppDelegate"
11 | // you can specify it here.
12 | UIApplication.Main(args, null, "AppDelegate");
13 | }
14 | }
15 | }
16 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/MultiSelectDemo.iOS.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Debug
5 | iPhoneSimulator
6 | 8.0.30703
7 | 2.0
8 | {8A3C013B-4515-4ADB-A8AC-4AAFD498D5C2}
9 | {FEACFBD2-3405-455C-9665-78FE426C6842};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
10 | Exe
11 | MultiSelectDemo.iOS
12 | Resources
13 | MultiSelectDemo.iOS
14 |
15 |
16 |
17 |
18 | true
19 | full
20 | false
21 | bin\iPhoneSimulator\Debug
22 | DEBUG
23 | prompt
24 | 4
25 | false
26 | i386, x86_64
27 | None
28 | true
29 |
30 |
31 | none
32 | true
33 | bin\iPhoneSimulator\Release
34 | prompt
35 | 4
36 | None
37 | i386, x86_64
38 | false
39 |
40 |
41 | true
42 | full
43 | false
44 | bin\iPhone\Debug
45 | DEBUG
46 | prompt
47 | 4
48 | false
49 | ARMv7, ARM64
50 | iPhone Developer
51 | true
52 | Entitlements.plist
53 |
54 |
55 | none
56 | true
57 | bin\iPhone\Release
58 | prompt
59 | 4
60 | ARMv7, ARM64
61 | false
62 | iPhone Developer
63 | Entitlements.plist
64 |
65 |
66 | none
67 | True
68 | bin\iPhone\Ad-Hoc
69 | prompt
70 | 4
71 | False
72 | ARMv7, ARM64
73 | True
74 | Automatic:AdHoc
75 | iPhone Distribution
76 | Entitlements.plist
77 |
78 |
79 | none
80 | True
81 | bin\iPhone\AppStore
82 | prompt
83 | 4
84 | False
85 | ARMv7, ARM64
86 | Automatic:AppStore
87 | iPhone Distribution
88 | Entitlements.plist
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 |
121 |
122 |
123 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Core.dll
124 |
125 |
126 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.dll
127 |
128 |
129 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Platform.iOS.dll
130 |
131 |
132 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\Xamarin.iOS10\Xamarin.Forms.Xaml.dll
133 |
134 |
135 |
136 |
137 |
138 | {de8aa97d-b323-4bcc-976f-1f3da97dc449}
139 | MultiSelectDemo
140 |
141 |
142 |
143 |
144 |
145 |
146 | This project references NuGet package(s) that are missing on this computer. Use 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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.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("MultiSelectDemo.iOS")]
9 | [assembly: AssemblyDescription("")]
10 | [assembly: AssemblyConfiguration("")]
11 | [assembly: AssemblyCompany("")]
12 | [assembly: AssemblyProduct("MultiSelectDemo.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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-568h@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-568h@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-Portrait.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-Portrait.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-Portrait@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default-Portrait@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Default@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-60@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-60@3x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-76.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-76@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small-40@3x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small@2x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/Resources/Icon-Small@3x.png
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/iTunesArtwork:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/iTunesArtwork
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/iTunesArtwork@2x:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mattleibow/MultiSelectListView/fc8381e56149e6886f5eb3fddc9744847c7ae04b/MultiSelectDemo/MultiSelectDemo.iOS/iTunesArtwork@2x
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo.iOS/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/App.xaml:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/App.xaml.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 MultiSelectDemo
9 | {
10 | public partial class App : Application
11 | {
12 | public App()
13 | {
14 | InitializeComponent();
15 |
16 | MainPage = new NavigationPage(new MainPage());
17 | }
18 |
19 | protected override void OnStart()
20 | {
21 | // Handle when your app starts
22 | }
23 |
24 | protected override void OnSleep()
25 | {
26 | // Handle when your app sleeps
27 | }
28 |
29 | protected override void OnResume()
30 | {
31 | // Handle when your app resumes
32 | }
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/Controls/MultiSelectListView.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace MultiSelectDemo.Controls
4 | {
5 | public static class MultiSelectListView
6 | {
7 | public static readonly BindableProperty IsMultiSelectProperty =
8 | BindableProperty.CreateAttached("IsMultiSelect", typeof(bool), typeof(ListView), false, propertyChanged: OnIsMultiSelectChanged);
9 |
10 | public static bool GetIsMultiSelect(BindableObject view) => (bool)view.GetValue(IsMultiSelectProperty);
11 |
12 | public static void SetIsMultiSelect(BindableObject view, bool value) => view.SetValue(IsMultiSelectProperty, value);
13 |
14 | private static void OnIsMultiSelectChanged(BindableObject bindable, object oldValue, object newValue)
15 | {
16 | var listView = bindable as ListView;
17 | if (listView != null)
18 | {
19 | // always remove event
20 | listView.ItemSelected -= OnItemSelected;
21 |
22 | // add the event if true
23 | if (true.Equals(newValue))
24 | {
25 | listView.ItemSelected += OnItemSelected;
26 | }
27 | }
28 | }
29 |
30 | private static void OnItemSelected(object sender, SelectedItemChangedEventArgs e)
31 | {
32 | var item = e.SelectedItem as SelectableItem;
33 | if (item != null)
34 | {
35 | // toggle the selection property
36 | item.IsSelected = !item.IsSelected;
37 | }
38 |
39 | // deselect the item
40 | ((ListView)sender).SelectedItem = null;
41 | }
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/Controls/SelectableItem.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace MultiSelectDemo.Controls
4 | {
5 | public class SelectableItem : BindableObject
6 | {
7 | public static readonly BindableProperty DataProperty =
8 | BindableProperty.Create(nameof(Data), typeof(object), typeof(SelectableItem), null);
9 |
10 | public static readonly BindableProperty IsSelectedProperty =
11 | BindableProperty.Create(nameof(IsSelected), typeof(bool), typeof(SelectableItem), false);
12 |
13 | public SelectableItem(object data)
14 | {
15 | Data = data;
16 | }
17 |
18 | public SelectableItem(object data, bool isSelected)
19 | {
20 | Data = data;
21 | IsSelected = isSelected;
22 | }
23 |
24 | public object Data
25 | {
26 | get { return GetValue(DataProperty); }
27 | set { SetValue(DataProperty, value); }
28 | }
29 |
30 | public bool IsSelected
31 | {
32 | get { return (bool)GetValue(IsSelectedProperty); }
33 | set { SetValue(IsSelectedProperty, value); }
34 | }
35 | }
36 |
37 | public class SelectableItem : SelectableItem
38 | {
39 | public SelectableItem(T data)
40 | : base(data)
41 | {
42 | }
43 |
44 | public SelectableItem(T data, bool isSelected)
45 | : base(data, isSelected)
46 | {
47 | }
48 |
49 | public new T Data
50 | {
51 | get { return (T)base.Data; }
52 | set { base.Data = value; }
53 | }
54 | }
55 | }
56 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/Controls/SelectableObservableCollection.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Collections.ObjectModel;
4 | using System.Linq;
5 |
6 | namespace MultiSelectDemo.Controls
7 | {
8 | public class SelectableObservableCollection : ObservableCollection>
9 | {
10 | public SelectableObservableCollection()
11 | : base()
12 | {
13 | }
14 |
15 | public SelectableObservableCollection(IEnumerable collection)
16 | : base(collection.Select(c => new SelectableItem(c)))
17 | {
18 | }
19 |
20 | public SelectableObservableCollection(IEnumerable> collection)
21 | : base(collection)
22 | {
23 | }
24 |
25 | public IEnumerable SelectedItems => Items.Where(i => i.IsSelected).Select(i => i.Data);
26 |
27 | public IEnumerable UnselectedItems => Items.Where(i => !i.IsSelected).Select(i => i.Data);
28 |
29 | public void Add(T item, bool selected = false)
30 | {
31 | Add(new SelectableItem(item, selected));
32 | }
33 |
34 | public void Insert(int index, T item, bool selected = false)
35 | {
36 | if (item == null)
37 | throw new ArgumentNullException(nameof(item));
38 |
39 | Insert(index, new SelectableItem(item, selected));
40 | }
41 |
42 | public bool IsSelected(T item)
43 | {
44 | if (item == null)
45 | throw new ArgumentNullException(nameof(item));
46 |
47 | var idx = IndexOf(item);
48 | return idx != -1 && Items[idx].IsSelected;
49 | }
50 |
51 | public bool Contains(T item)
52 | {
53 | if (item == null)
54 | throw new ArgumentNullException(nameof(item));
55 |
56 | return IndexOf(item) != -1;
57 | }
58 |
59 | public int IndexOf(T item)
60 | {
61 | if (item == null)
62 | throw new ArgumentNullException(nameof(item));
63 |
64 | for (var i = 0; i < Count; i++)
65 | {
66 | if (item.Equals(Items[i].Data))
67 | {
68 | return i;
69 | }
70 | }
71 | return -1;
72 | }
73 |
74 | public bool Remove(T item)
75 | {
76 | if (item == null)
77 | throw new ArgumentNullException(nameof(item));
78 |
79 | var i = IndexOf(item);
80 | if (i != -1)
81 | {
82 | RemoveAt(i);
83 | return true;
84 | }
85 | return false;
86 | }
87 | }
88 | }
89 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/Controls/SelectableViewCell.cs:
--------------------------------------------------------------------------------
1 | using Xamarin.Forms;
2 |
3 | namespace MultiSelectDemo.Controls
4 | {
5 | [ContentProperty(nameof(DataView))]
6 | public class SelectableViewCell : ViewCell
7 | {
8 | private Grid rootGrid;
9 | private View dataView;
10 | private View checkView;
11 |
12 | public SelectableViewCell()
13 | {
14 | rootGrid = new Grid
15 | {
16 | Padding = 12,
17 | ColumnDefinitions =
18 | {
19 | new ColumnDefinition { Width = GridLength.Star },
20 | new ColumnDefinition { Width = GridLength.Auto }
21 | }
22 | };
23 |
24 | View = rootGrid;
25 |
26 | var check = new BoxView
27 | {
28 | Color = Color.CornflowerBlue,
29 | WidthRequest = 12,
30 | HeightRequest = 12,
31 | };
32 | CheckView = check;
33 |
34 | var text = new Label();
35 | text.SetBinding(Label.TextProperty, ".");
36 | DataView = text;
37 | }
38 |
39 | public View CheckView
40 | {
41 | get { return checkView; }
42 | set
43 | {
44 | // jump out if the value is the same or something happened to our layout
45 | if (checkView == value || View != rootGrid)
46 | return;
47 |
48 | OnPropertyChanging();
49 |
50 | // remove the old binding
51 | if (checkView != null)
52 | {
53 | checkView.RemoveBinding(VisualElement.IsVisibleProperty);
54 | rootGrid.Children.Remove(checkView);
55 | }
56 |
57 | checkView = value;
58 |
59 | // add the new binding
60 | if (checkView != null)
61 | {
62 | checkView.SetBinding(VisualElement.IsVisibleProperty, nameof(SelectableItem.IsSelected));
63 | Grid.SetColumn(checkView, 1);
64 | Grid.SetColumnSpan(checkView, 1);
65 | Grid.SetRow(checkView, 0);
66 | Grid.SetRowSpan(checkView, 1);
67 | checkView.HorizontalOptions = LayoutOptions.End;
68 | checkView.VerticalOptions = LayoutOptions.Center;
69 | rootGrid.Children.Add(checkView);
70 | }
71 |
72 | OnPropertyChanged();
73 | }
74 | }
75 |
76 | public View DataView
77 | {
78 | get { return dataView; }
79 | set
80 | {
81 | // jump out if the value is the same or something happened to our layout
82 | if (dataView == value || View != rootGrid)
83 | return;
84 |
85 | OnPropertyChanging();
86 |
87 | // remove the old view
88 | if (dataView != null)
89 | {
90 | dataView.RemoveBinding(BindingContextProperty);
91 | rootGrid.Children.Remove(dataView);
92 | }
93 |
94 | dataView = value;
95 |
96 | // add the new view
97 | if (dataView != null)
98 | {
99 | dataView.SetBinding(BindingContextProperty, nameof(SelectableItem.Data));
100 | Grid.SetColumn(dataView, 0);
101 | Grid.SetColumnSpan(dataView, 1);
102 | Grid.SetRow(dataView, 0);
103 | Grid.SetRowSpan(dataView, 1);
104 | dataView.HorizontalOptions = LayoutOptions.StartAndExpand;
105 | dataView.VerticalOptions = LayoutOptions.FillAndExpand;
106 | rootGrid.Children.Add(dataView);
107 | }
108 |
109 | OnPropertyChanged();
110 | }
111 | }
112 | }
113 | }
114 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/MainPage.xaml:
--------------------------------------------------------------------------------
1 |
2 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/MainPage.xaml.cs:
--------------------------------------------------------------------------------
1 | using System.Collections.ObjectModel;
2 | using System.Linq;
3 | using System.Windows.Input;
4 | using Xamarin.Forms;
5 |
6 | using MultiSelectDemo.Controls;
7 | using System;
8 |
9 | namespace MultiSelectDemo
10 | {
11 | public partial class MainPage : ContentPage
12 | {
13 | private bool enableMultiSelect;
14 |
15 | public MainPage()
16 | {
17 | InitializeComponent();
18 |
19 | var initialItems = new[] {
20 | "One",
21 | "Two",
22 | "Three",
23 | "Four",
24 | "Five"
25 | };
26 |
27 | enableMultiSelect = true;
28 | Items = new SelectableObservableCollection(initialItems);
29 | AddItemCommand = new Command(OnAddItem);
30 | RemoveSelectedCommand = new Command(OnRemoveSelected);
31 | ToggleSelectionCommand = new Command(OnToggleSelection);
32 |
33 | BindingContext = this;
34 | }
35 |
36 | public bool EnableMultiSelect
37 | {
38 | get { return enableMultiSelect; }
39 | set
40 | {
41 | enableMultiSelect = value;
42 | OnPropertyChanged();
43 | }
44 | }
45 |
46 | public SelectableObservableCollection Items { get; }
47 |
48 | public ICommand AddItemCommand { get; }
49 |
50 | public ICommand RemoveSelectedCommand { get; }
51 |
52 | public ICommand ToggleSelectionCommand { get; }
53 |
54 | private void OnAddItem()
55 | {
56 | Items.Add(Guid.NewGuid().ToString());
57 | }
58 |
59 | private void OnRemoveSelected()
60 | {
61 | var selectedItems = Items.SelectedItems.ToArray();
62 | foreach (var item in selectedItems)
63 | {
64 | Items.Remove(item);
65 | }
66 | }
67 |
68 | private void OnToggleSelection()
69 | {
70 | foreach (var item in Items)
71 | {
72 | item.IsSelected = !item.IsSelected;
73 | }
74 | }
75 | }
76 | }
77 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/MultiSelectDemo.csproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | 11.0
6 | Debug
7 | AnyCPU
8 | {3CBF16ED-199F-475F-8DC6-0B6215084184}
9 | Library
10 | Properties
11 | MultiSelectDemo
12 | MultiSelectDemo
13 | 512
14 | v4.5
15 | Profile259
16 | {786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
17 |
18 |
19 |
20 |
21 | true
22 | full
23 | false
24 | bin\Debug\
25 | DEBUG;TRACE
26 | prompt
27 | 4
28 |
29 |
30 | pdbonly
31 | true
32 | bin\Release\
33 | TRACE
34 | prompt
35 | 4
36 |
37 |
38 |
39 | App.xaml
40 |
41 |
42 | MainPage.xaml
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 | Designer
53 | MSBuild:UpdateDesignTimeXaml
54 |
55 |
56 | Designer
57 | MSBuild:UpdateDesignTimeXaml
58 |
59 |
60 |
61 |
62 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Core.dll
63 |
64 |
65 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Platform.dll
66 |
67 |
68 | ..\..\packages\Xamarin.Forms.2.3.4.247\lib\portable-win+net45+wp80+win81+wpa81+MonoAndroid10+Xamarin.iOS10+xamarinmac20\Xamarin.Forms.Xaml.dll
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 | This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
79 |
80 |
81 |
82 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/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("MultiSelectDemo")]
10 | [assembly: AssemblyDescription("")]
11 | [assembly: AssemblyConfiguration("")]
12 | [assembly: AssemblyCompany("")]
13 | [assembly: AssemblyProduct("MultiSelectDemo")]
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 |
--------------------------------------------------------------------------------
/MultiSelectDemo/MultiSelectDemo/packages.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # MultiSelectListView
2 |
3 | An example app to show one way in which to create a multi-select ListView in Xamarin.Forms.
4 |
5 | More info here: https://dotnetdevaddict.wordpress.com/2017/06/29/multi-select-listview/
6 |
7 | This app has some new types, such as the selectable item:
8 |
9 | ```csharp
10 | public class SelectableItem : BindableObject
11 | {
12 | public static readonly BindableProperty DataProperty;
13 | public static readonly BindableProperty IsSelectedProperty;
14 |
15 | public SelectableItem(object data);
16 | public SelectableItem(object data, bool isSelected);
17 |
18 | public object Data { get; set; }
19 | public bool IsSelected { get; set; }
20 | }
21 | public class SelectableItem : SelectableItem
22 | {
23 | public SelectableItem(T data);
24 | public SelectableItem(T data, bool isSelected);
25 |
26 | public new T Data { get; set; }
27 | }
28 | ```
29 |
30 | There is also a selectable collection, with some convenience members:
31 |
32 | ```csharp
33 | public class SelectableObservableCollection : ObservableCollection>
34 | {
35 | public SelectableObservableCollection();
36 | public SelectableObservableCollection(IEnumerable collection);
37 | public SelectableObservableCollection(IEnumerable> collection);
38 |
39 | public IEnumerable SelectedItems { get; }
40 | public IEnumerable UnselectedItems { get; }
41 |
42 | public void Add(T item, bool selected = false);
43 | public void Insert(int index, T item, bool selected = false);
44 | public bool IsSelected(T item);
45 | public bool Contains(T item);
46 | public int IndexOf(T item);
47 | public bool Remove(T item);
48 | }
49 | ```
50 |
51 | These types can be used like any other collection:
52 |
53 | ```csharp
54 | public partial class MainPage : ContentPage
55 | {
56 | public MainPage()
57 | {
58 | InitializeComponent();
59 |
60 | Items = new SelectableObservableCollection();
61 |
62 | Items.Add("Hello World");
63 | Items.Add("Testing 1. 2. 3.");
64 | Items.Add("Xamarin.Forms", true); // this one is selected
65 |
66 | BindingContext = this;
67 | }
68 |
69 | public SelectableObservableCollection Items { get; }
70 | }
71 | ```
72 |
73 | But, they make any list support multi-select:
74 |
75 | ```xml
76 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 | ```
97 |
--------------------------------------------------------------------------------