vote up 0 vote down star

It was my understanding that this:

<Style TargetType="{x:Type Image}">
  <Setter Property="Margin" Value="0"/>
  <Setter Property="Stretch" Value="None"/>
  <Setter Property="HorizontalAlignment" Value="Center"/>
  <Setter Property="VerticalAlignment" Value="Center"/>
  <Setter Property="Cursor" Value="Help"/>  	
</Style>

would change the default image settings for each image rendered on the Window. Is this not the case? Is there an exception for images as it appears to work with other controls?

TIA

flag

1 Answer

vote up 1 vote down check

To set a style for a type you actually need to set the x:Key attribute like so:

<Style x:Key="{x:Type Image}" TargetType="{x:Type Image}">
    <!-- setters here -->
</Style>
link|flag
Thank you Drew! – Brad Nov 2 at 22:59
Glad I could help. ;) – Drew Marsh Nov 2 at 23:01

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.