私はWPFが初めてです。これを行う方法がわかりません。
私はこのスタイルを定義しています -
<Style TargetType="{x:Type Button}" x:Key="StandardButton">
<Setter Property="Background" Value="{StaticResource LightBackground}"/>
<Setter Property="Foreground" Value="{StaticResource Foreground}"/>
</Style>
コントロールテンプレートがあります -
<ControlTemplate x:Key="ExpanderTemplate" TargetType="{x:Type Expander}">
<ControlTemplate.Resources>
<Style TargetType="{x:Type Button}" /* Here I need to put above defined style */></Style>
</ControlTemplate.Resources>
</ControlTemplate>