up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

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|improve this answer
Thank you Drew! – Brad Nov 2 '09 at 22:59
Glad I could help. ;) – Drew Marsh Nov 2 '09 at 23:01
feedback

Your Answer

 
or
required, but never shown

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