绑定到资源中的值?

时间:2009-07-02 13:42:17

标签: wpf xaml binding

假设有一个资源:

<Window.Resources>
  <ImageBrush x:Key="MyImageBrush" Opacity="0.5"
             ImageSource="image1.png" Stretch="None" 
             AlignmentX="Center" AlignmentY="Center" />
</Window.Resources>

然后我将如何获得该资源的Opacity值? 我尝试过以下但是没有用。

<TextBlock Text="{Binding ElementName=MyImageBrush, Path=Opacity}" />

1 个答案:

答案 0 :(得分:1)

<TextBlock Text="{Binding Source={StaticResource MyImageBrush}, Path=Opacity}" />