如何转换绑定数据

此示例演示如何将转换应用于绑定中使用的数据。

若要在绑定期间转换数据,必须创建实现 IValueConverter 接口的类,其中包括 ConvertConvertBack 方法。

下面的示例演示了转换传入的日期值的日期转换器的实现,以便它只显示年份、月和日。 实现 IValueConverter 接口时,最好用 ValueConversionAttribute 属性来修饰实现,以便为开发工具指明转换中涉及的数据类型,如以下示例所示:

[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

创建转换器后,可以在可扩展应用程序标记语言 (XAML) 文件中将其添加为资源。 在以下示例中,src 映射到在其中定义 DateConverter 的命名空间。

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

最后,可以使用以下语法在绑定中使用转换器。 在以下示例中,TextBlock 的文本内容绑定到 StartDate,这是外部数据源的属性。

<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}"/>

以上示例中引用的样式资源在本主题中未显示的资源节中定义。

另请参阅