A sample 'Proof of Concept' project to create a object to list binding for MvvmCross
Version 0.1
- Added the first demo project for Touch and Droid
Todo Items.
-
- Make use of Native converters to map properties back and forward from our (original) viewModel to a 'Value' on our ListViewItemViewModel.
-
- Update the UI (LIstView) after a value has changed our (original) viewmodel.
-
- Add methods to pass multiple ValueConverters to our BindableListView based upon PropertyName. Example code: this.CreateBinding(source) .To(vm => vm.ExampleViewModel) .WithConversion ( KeyValue<string,MvxConverter> ( "ExampleProperty", new ExampleConverter() ), KeyValue<string,MvxConverter> ( "AnotherPropery", new AnotherConverter() ) ) .Apply();
-
- Create a mapping to pass our converters via axml.