我希望能够以编程方式将某些数据绑定到BitmapEffect上的依赖项属性。使用诸如TextBlock之类的FrameworkElement,可以使用SetBinding方法,以编程方式执行以下绑定:

myTextBlock.SetBinding(TextBlock.TextProperty, new Binding("SomeProperty"));


而且我知道您可以直接使用XAML进行操作(如下所示)

<TextBlock Width="Auto" Text="Some Content" x:Name="MyTextBlock" TextWrapping="Wrap" >
    <TextBlock.BitmapEffect>
        <BitmapEffectGroup>
            <OuterGlowBitmapEffect x:Name="MyGlow" GlowColor="White" GlowSize="{Binding Path=MyValue}" />
        </BitmapEffectGroup>
    </TextBlock.BitmapEffect>
</TextBlock>


但是我不知道如何用C#完成此操作,因为BitmapEffect没有SetBinding方法。

我试过了:

myTextBlock.SetBinding(OuterGlowBitmapEffect.GlowSize, new Binding("SomeProperty") { Source = someObject });


但这是行不通的。

最佳答案

您可以使用BindingOperation.SetBinding

Binding newBinding = new Binding();
newBinding.ElementName = "SomeObject";
newBinding.Path = new PropertyPath(SomeObjectType.SomeProperty);
BindingOperations.SetBinding(MyGlow, OuterGlowBitmapEffect.GlowSizeProperty, newBinding);


我认为这应该做您想要的。

07-28 02:35