Xamarin.Forms
Trigger & Behaviors
Ricerca…
Esempio di trigger di Xamarin Form
Trigger
sono un modo semplice per aggiungere un po 'di reattività UX alla tua applicazione. Un modo semplice per farlo è aggiungere un Trigger
che modifichi il TextColor
Label
basandosi sul fatto che la relativa Entry
relativa abbia inserito o meno testo.
L'utilizzo di un Trigger
per questo consente a Label.TextColor
di passare dal grigio (quando non viene inserito alcun testo) al nero (non appena gli utenti immettono il testo):
Convertitore (ad ogni convertitore viene assegnata una variabile di Instance
utilizzata nel bind in modo che non venga creata una nuova istanza della classe ogni volta che viene utilizzata):
/// <summary>
/// Used in a XAML trigger to return <c>true</c> or <c>false</c> based on the length of <c>value</c>.
/// </summary>
public class LengthTriggerConverter : Xamarin.Forms.IValueConverter {
/// <summary>
/// Used so that a new instance is not created every time this converter is used in the XAML code.
/// </summary>
public static LengthTriggerConverter Instance = new LengthTriggerConverter();
/// <summary>
/// If a `ConverterParameter` is passed in, a check to see if <c>value</c> is greater than <c>parameter</c> is made. Otherwise, a check to see if <c>value</c> is over 0 is made.
/// </summary>
/// <param name="value">The length of the text from an Entry/Label/etc.</param>
/// <param name="targetType">The Type of object/control that the text/value is coming from.</param>
/// <param name="parameter">Optional, specify what length to test against (example: for 3 Letter Name, we would choose 2, since the 3 Letter Name Entry needs to be over 2 characters), if not specified, defaults to 0.</param>
/// <param name="culture">The current culture set in the device.</param>
/// <returns><c>object</c>, which is a <c>bool</c> (<c>true</c> if <c>value</c> is greater than 0 (or is greater than the parameter), <c>false</c> if not).</returns>
public object Convert(object value, System.Type targetType, object parameter, CultureInfo culture) { return DoWork(value, parameter); }
public object ConvertBack(object value, System.Type targetType, object parameter, CultureInfo culture) { return DoWork(value, parameter); }
private static object DoWork(object value, object parameter) {
int parameterInt = 0;
if(parameter != null) { //If param was specified, convert and use it, otherwise, 0 is used
string parameterString = (string)parameter;
if(!string.IsNullOrEmpty(parameterString)) { int.TryParse(parameterString, out parameterInt); }
}
return (int)value > parameterInt;
}
}
XAML (il codice XAML usa x:Name
della Entry
per capire nella proprietà Entry.Text
è di oltre 3 caratteri.):
<StackLayout>
<Label Text="3 Letter Name">
<Label.Triggers>
<DataTrigger TargetType="Label"
Binding="{Binding Source={x:Reference NameEntry},
Path=Text.Length,
Converter={x:Static helpers:LengthTriggerConverter.Instance},
ConverterParameter=2}"
Value="False">
<Setter Property="TextColor"
Value="Gray"/>
</DataTrigger>
</Label.Triggers>
</Label>
<Entry x:Name="NameEntry"
Text="{Binding MealAmount}"
HorizontalOptions="StartAndExpand"/>
</StackLayout>
Multi trigger
MultiTrigger non è necessario frequentemente, ma ci sono alcune situazioni in cui è molto utile. MultiTrigger si comporta in modo simile a Trigger o DataTrigger ma ha più condizioni. Tutte le condizioni devono essere vere per un Setter di sparare. Qui c'è un semplice esempio:
<!-- Text field needs to be initialized in order for the trigger to work at start -->
<Entry x:Name="email" Placeholder="Email" Text="" />
<Entry x:Name="phone" Placeholder="Phone" Text="" />
<Button Text="Submit">
<Button.Triggers>
<MultiTrigger TargetType="Button">
<MultiTrigger.Conditions>
<BindingCondition Binding="{Binding Source={x:Reference email}, Path=Text.Length}" Value="0" />
<BindingCondition Binding="{Binding Source={x:Reference phone}, Path=Text.Length}" Value="0" />
</MultiTrigger.Conditions>
<Setter Property="IsEnabled" Value="False" />
</MultiTrigger>
</Button.Triggers>
</Button>
L'esempio ha due voci diverse, telefono ed e-mail, e una di queste è richiesta per essere riempita. Il MultiTrigger disabilita il pulsante di invio quando entrambi i campi sono vuoti.