Image.Height TemplateBinding nie działa

Stworzyłem CustomControl zaimplementowany z klasy Button w WPF.

public class ImageButton : Button
{
      ...

       public int ImageHeight
       {
           get { return (int)GetValue(ImageHeightProperty); }
           set { SetValue(ImageHeightProperty, value); }
       }
       public static readonly DependencyProperty ImageHeightProperty =
           DependencyProperty.Register("ImageHeight", typeof(int), typeof(ImageButton), new UIPropertyMetadata(32)); 

       ...
}

I mam taki szablon zasobów:

<Setter Property="Template">
   <Setter.Value>
     <ControlTemplate TargetType="{x:Type custom:ImageButton}">
       <Border>
         <StackPanel>
          <Image Name="image" Height="{TemplateBinding ImageHeight}"/>
          <TextBlock Text="{TemplateBinding Text}" />
         </StackPanel>
       </Border>
     <ControlTemplate.Triggers>
   </ControlTemplate>
 </Setter.Value>

Właściwość zależności ImageHeight nie jest wiążąca. Kiedy piszę tak jak poniżej, działa dobrze.

Height="32"

Co jest z tym nie tak?

questionAnswers(1)

yourAnswerToTheQuestion