如何:轉換繫結的資料
此範例示範如何將轉換套用至繫結中使用的資料。
若要在繫結期間轉換資料,您必須建立會實作 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}"/>
上述範例中所參考的樣式資源定義於本主題未顯示的資源區段中。