Example #1
0
 public DynamicKeyPage(LocationSearchResultViewModel dkpvm) : this()
 {
     KeyViewModel   = dkpvm;
     BindingContext = KeyViewModel;
 }
Example #2
0
 public DynamicKeyPage(List <Plant> plants) : this()
 {
     KeyViewModel   = new LocationSearchResultViewModel(plants);
     BindingContext = KeyViewModel;
 }
Example #3
0
 public ViewSelectedAttributesPage(LocationSearchResultViewModel key) : this()
 {
     KeyViewModel   = key;
     BindingContext = KeyViewModel;
 }
Example #4
0
 public ResultsPage(List <Plant> plants) : this()
 {
     ViewModel      = new LocationSearchResultViewModel(plants);
     BindingContext = ViewModel;
 }
Example #5
0
 public SecondHeadingPage(LocationSearchResultViewModel key)
 {
     InitializeComponent();
     KeyViewModel = key;
     FirstHeading = KeyViewModel.SelectedFirstHeading;
 }
Example #6
0
 public AttributeSelectionPage(LocationSearchResultViewModel key)
 {
     InitializeComponent();
     KeyViewModel = key;
 }