假设有一个资源:
<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}" />
答案 0 :(得分:1)
<TextBlock Text="{Binding Source={StaticResource MyImageBrush}, Path=Opacity}" />