0

您好,我在 ContentControl 模板中使用附加属性。到目前为止,我的方法是这样的-

具有附加属性的类

public class PlaceHolderForProfilePic : DependencyObject
{
    public static readonly DependencyProperty InitialsProperty = DependencyProperty.RegisterAttached("Initials", typeof(string), typeof(PlaceHolderForProfilePic), new PropertyMetadata(""));
    public static string GetInitials(DependencyObject d)
    {
        return (string)d.GetValue(InitialsProperty);
    }
    public static void SetInitials(DependencyObject d, string value)
    {
        d.SetValue(InitialsProperty, value);
    }
}

控制模板声明

<ContentControl helpers:PlaceHolderForProfilePic.Initials="{Binding FullName,Converter={StaticResource placeholderConverter},ConverterParameter=initials}" Width="60" Height="60" Template="{StaticResource DefaultProfilePictureItemTemplate2}"/>

控制模板正文

<ControlTemplate x:Key="DefaultProfilePictureItemTemplate2">
    <Grid Name="parentGrid">
         <TextBlock Text="{TemplateBinding helpers:PlaceHolderForProfilePic.Initials}" />
    </Grid>
</ControlTemplate>

现在我想在模板正文中应用转换器,而不是在声明中。我知道 TemplateBinding 不接受转换器,所以我尝试像这样使用 RelativeSource Templated Parent -

<TextBlock Text="{Binding helpers:PlaceHolderForProfilePic.Initials , RelativeSource={RelativeSource Mode=TemplatedParent}, Converter={StaticResource placeholderConverter}, ConverterParameter=initials}"/>

但是有一个 BindingPathExpression 错误,因为它不接受“:”

有没有其他方法可以解决这个问题?

4

1 回答 1

0

尝试使用语法: {Binding Path=(helpers:PlaceHolderForProfilePic.Initials), ...} 代替。

于 2016-05-10T10:34:24.680 回答