次のコントロール テンプレートがあります。
テンプレート バインディングを使用して、コントロール テンプレートでイメージ コントロールのソース プロパティを設定したいと考えています。
しかし、これはボタン コントロールのコントロール テンプレートであり、ボタン コントロールには source プロパティがないため、この場合は TemplateBinding を使用できません。
<ControlTemplate x:Key="BtnTemplate" TargetType="Button">
<Border CornerRadius="5" Margin="15" Cursor="Hand">
<StackPanel>
<Image Name="Img" Style="{StaticResource ImageStyle}" Source="temp.jpg" Height="100" Width="100" Margin="5"></Image>
<Label Content="{TemplateBinding Content}" Background="Transparent" Margin="2"></Label>
</StackPanel>
</Border>
</ControlTemplate>
ボタンのインスタンスごとに異なる画像を設定する必要があるため、パスもハードコーディングできません。
この状況の対処法を教えてください。