Xamarin.Forms
Associazione dati
Ricerca…
Osservazioni
Possibili eccezioni
System.ArrayTypeMismatchException: Tentativo di accedere a un elemento come tipo incompatibile con l'array.
Questa eccezione può verificarsi quando si tenta di associare una raccolta a una proprietà non associabile quando la pre-compilazione XAML è abilitata. Un esempio comune è il tentativo di associare Picker.Items
. Vedi sotto.
System.ArgumentException: oggetto di tipo 'Xamarin.Forms.Binding' non può essere convertito in tipo 'System.String'.
Questa eccezione può verificarsi quando si tenta di associare una raccolta a una proprietà non associabile quando la pre-compilazione XAML è disabilitata. Un esempio comune è il tentativo di associare Picker.Items
. Vedi sotto.
Il Picker.Items
proprietà non è Bindable
Questo codice causerà un errore:
<!-- BAD CODE: will cause an error -->
<Picker Items="{Binding MyViewModelItems}" SelectedIndex="0" />
L'eccezione può essere una delle seguenti:
System.ArrayTypeMismatchException: Tentativo di accedere a un elemento come tipo incompatibile con l'array.
o
System.ArgumentException: oggetto di tipo 'Xamarin.Forms.Binding' non può essere convertito in tipo 'System.String'.
In particolare, la proprietà Items
non è associabile. Le soluzioni includono la creazione di un controllo personalizzato o l'utilizzo di un controllo di terze parti, come BindablePicker
di FreshEssentials . Dopo aver installato il pacchetto FreshEssentials NuGet nel progetto, del pacchetto di BindablePicker
controllo con un associabile ItemsSource
proprietà è disponibile:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:fe="clr-namespace:FreshEssentials;assembly=FreshEssentials"
xmlns:my="clr-namespace:MyAssembly;assembly=MyAssembly"
x:Class="MyNamespace.MyPage">
<ContentPage.BindingContext>
<my:MyViewModel />
</ContentPage.BindingContext>
<ContentPage.Content>
<fe:BindablePicker ItemsSource="{Binding MyViewModelItems}" SelectedIndex="0" />
</ContentPage.Content>
</ContentPage>
Collegamento di base a ViewModel
EntryPage.xaml:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:vm="clr-namespace:MyAssembly.ViewModel;assembly=MyAssembly"
x:Class="MyAssembly.EntryPage">
<ContentPage.BindingContext>
<vm:MyViewModel />
</ContentPage.BindingContext>
<ContentPage.Content>
<StackLayout VerticalOptions="FillAndExpand"
HorizontalOptions="FillAndExpand"
Orientation="Vertical"
Spacing="15">
<Label Text="Name:" />
<Entry Text="{Binding Name}" />
<Label Text="Phone:" />
<Entry Text="{Binding Phone}" />
<Button Text="Save" Command="{Binding SaveCommand}" />
</StackLayout>
</ContentPage.Content>
</ContentPage>
MyViewModel.cs:
using System;
using System.ComponentModel;
namespace MyAssembly.ViewModel
{
public class MyViewModel : INotifyPropertyChanged
{
private string _name = String.Empty;
private string _phone = String.Empty;
public string Name
{
get { return _name; }
set
{
if (_name != value)
{
_name = value;
OnPropertyChanged(nameof(Name));
}
}
}
public string Phone
{
get { return _phone; }
set
{
if (_phone != value)
{
_phone = value;
OnPropertyChanged(nameof(Phone));
}
}
}
public ICommand SaveCommand { get; private set; }
public MyViewModel()
{
SaveCommand = new Command(SaveCommandExecute);
}
private void SaveCommandExecute()
{
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void OnPropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
}
}