方法: バインドされたデータを変換する
この例では、バインディングで使用されるデータに変換を適用する方法を示します。
バインディング中にデータを変換するには、Convert メソッドと ConvertBack メソッドを含む IValueConverter インターフェイスを実装するクラスを作成する必要があります。
例
次の例は、渡された日付値を変換して、年、月、日のみを表示する日付コンバーターの実装を示しています。 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}"/>
上記の例で参照されているスタイル リソースは、このトピックに示されていないリソース セクションで定義されています。
関連項目
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET Desktop feedback