方法: バインドされたデータを変換する

この例では、バインドで使用されるデータに変換を適用する方法を示します。

バインドの間にデータを変換するには、IValueConverter インターフェイスを実装するクラスを作成する必要があります。これには、Convert メソッドと ConvertBack メソッドが含まれます。

次の例では、渡された日付値を年、月、日のみが表示されるように変換する日付コンバーターの実装を示します。 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

コンバーターを作成した後は、それをリソースとして Extensible Application Markup Language (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}"/>

上の例で参照されているスタイル リソースは、このトピックでは示されていないリソース セクションで定義されています。

関連項目