Condividi tramite


Procedura: convertire i dati associati

In questo esempio viene illustrato come applicare la conversione ai dati usati nelle associazioni.

Per convertire i dati durante l'associazione, è necessario creare una classe che implementa l'interfaccia IValueConverter , che include i Convert metodi e ConvertBack .

Esempio

Nell'esempio seguente viene illustrata l'implementazione di un convertitore di date che converte il valore di data passato in modo che mostri solo l'anno, il mese e il giorno. Quando si implementa l'interfaccia IValueConverter , è consigliabile decorare l'implementazione con un ValueConversionAttribute attributo per indicare agli strumenti di sviluppo i tipi di dati coinvolti nella conversione, come nell'esempio seguente:

[ValueConversion(typeof(DateTime), typeof(String))]
public class DateConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        DateTime date = (DateTime)value;
        return date.ToShortDateString();
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        string strValue = value as string;
        DateTime resultDateTime;
        if (DateTime.TryParse(strValue, out resultDateTime))
        {
            return resultDateTime;
        }
        return DependencyProperty.UnsetValue;
    }
}
Public Class DateConverter
    Implements System.Windows.Data.IValueConverter

    Public Function Convert(ByVal value As Object,
                            ByVal targetType As System.Type,
                            ByVal parameter As Object,
                            ByVal culture As System.Globalization.CultureInfo) _
             As Object Implements System.Windows.Data.IValueConverter.Convert

        Dim DateValue As DateTime = CType(value, DateTime)
        Return DateValue.ToShortDateString

    End Function

    Public Function ConvertBack(ByVal value As Object,
                                ByVal targetType As System.Type,
                                ByVal parameter As Object,
                                ByVal culture As System.Globalization.CultureInfo) _
            As Object Implements System.Windows.Data.IValueConverter.ConvertBack

        Dim strValue As String = value
        Dim resultDateTime As DateTime
        If DateTime.TryParse(strValue, resultDateTime) Then
            Return resultDateTime
        End If
        Return DependencyProperty.UnsetValue

    End Function
End Class

Dopo aver creato un convertitore, è possibile aggiungerlo come risorsa nel file XAML (Extensible Application Markup Language). Nell'esempio seguente src esegue il mapping allo spazio dei nomi in cui è definito DateConverter.

<src:DateConverter x:Key="dateConverter"/>

Infine, è possibile usare il convertitore nell'associazione usando la sintassi seguente. Nell'esempio seguente il contenuto di testo di TextBlock è associato a StartDate, ovvero una proprietà di un'origine dati esterna.

<TextBlock Grid.Row="2" Grid.Column="0" Margin="0,0,8,0"
           Name="startDateTitle"
           Style="{StaticResource smallTitleStyle}">Start Date:</TextBlock>
<TextBlock Name="StartDateDTKey" Grid.Row="2" Grid.Column="1" 
    Text="{Binding Path=StartDate, Converter={StaticResource dateConverter}}" 
    Style="{StaticResource textStyleTextBlock}"/>

Le risorse di stile a cui si fa riferimento nell'esempio precedente sono definite in una sezione delle risorse non illustrate in questo argomento.

Vedi anche