I have a horizontal StackPanel of an Image and TextBlock. What I need to accomplish is changing the foreground of both to a certain color. I can easily change the TextBlock with the Foreground property, but I am not sure how to do this with an Image. The image is just a basic app icon.
<StackPanel Orientation="Horizontal">
<Image Source="/Assets/Icons/appbar.book.perspective.png" Width="50" Height="50" Margin="-8,0,-6,0"/>
<TextBlock Text="BOOK" VerticalAlignment="Center" Foreground="Blue"/>
</StackPanel>