WPFエキスパンダーヘッダーにスタイルを適用したいと思います。次のXAMLにはExpanderがありますが、スタイルはヘッダーだけではなく、すべてのものです。
ありがとう。
<Page
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
Width="640"
>
<StackPanel>
<StackPanel.Resources>
<Style TargetType="Expander">
<Style.Resources>
<LinearGradientBrush x:Key="BackBrush" StartPoint="0.5,0" EndPoint="0.5,1">
<GradientStop Color="#EF3132" Offset="0.1" />
<GradientStop Color="#D62B2B" Offset="0.9" />
</LinearGradientBrush>
</Style.Resources>
<Setter Property="Background" Value="{StaticResource BackBrush}"/>
</Style>
</StackPanel.Resources>
<Expander>
<StackPanel>
<TextBlock>Bike</TextBlock>
<TextBlock>Car</TextBlock>
<TextBlock>Truck</TextBlock>
</StackPanel>
</Expander>
</StackPanel>
</Page>
Josh Smith と [〜#〜] msdn [〜#〜] のXAMLを組み合わせて、解決策を考え出しました。実際、コントロール(少なくともヘッダー)を再テンプレート化する必要があります。
<Page
xmlns="http://schemas.Microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.Microsoft.com/winfx/2006/xaml"
Width="400">
<StackPanel>
<StackPanel.Resources>
<Style TargetType="Border" x:Key="RacePitBorderStyle" >
<Style.Resources>
<LinearGradientBrush x:Key="BackBrush" StartPoint="0.5,0" EndPoint="0.5,1">
<GradientStop Color="#EF3132" Offset="0.1" />
<GradientStop Color="#D62B2B" Offset="0.9" />
</LinearGradientBrush>
</Style.Resources>
<Setter Property="Background" Value="{StaticResource BackBrush}"/>
</Style>
<DataTemplate x:Key="titleText">
<Border Style="{StaticResource RacePitBorderStyle}" Height="24">
<TextBlock Text="{Binding}"
Margin="4 0"
VerticalAlignment="Center"
Foreground="White"
FontSize="11"
FontWeight="Normal"
Width="{Binding
RelativeSource={RelativeSource
Mode=FindAncestor,
AncestorType={x:Type Expander}},
Path=ActualWidth}"
TextWrapping="Wrap"/>
</Border>
</DataTemplate>
<Style TargetType="{x:Type Expander}">
<Setter Property="HeaderTemplate" Value="{StaticResource titleText}"/>
</Style>
</StackPanel.Resources>
<Expander Name="hcontCtrl" Header="This is the header.">
<StackPanel>
<TextBox>This is a textbox</TextBox>
<Button>A button</Button>
</StackPanel>
</Expander>
</StackPanel>
</Page>
Vasileの答えは正しい方向に向かっていると思いますが、元のポスターが必要とする以上のことをしているようです。元々の質問は、ヘッダーの背景を変更することだけでした。提示された変更はそれを行いますが、他のことも行います。
これらの他のことの1つは、デフォルトの実装を置き換えることです。私は、ContentPresenterをTextBlockに置き換えます。では、このスタックパネルに2つ目のエキスパンダーを後で追加するとどうなりますか?たぶん次のようなもの:
<Expander>
<Expander.Header>
<StackPanel>
<Border height="5" width="5" Foreground="Blue"/>
<TextBlock>Ha!</TextBlock>
</StackPanel>
</Expander.Header>
</Expander>
分かりませんが、良くありません。代わりに、これをシンプルに保ちたいと思います。
<DataTemplate x:Key="expanderHeader">
<ContentPresenter
Content={Binding}
TextBlock.Background={StaticResource myBrush}/>
</DataTemplate>
<Style TargetType="Expander">
<Setter Property="HeaderTemplate" Value="{StaticResource expanderHeader}"/>
</Style>
そうすることで、誰かがスタイル付きエキスパンダーに単なるテキストではない何かを入れても、壊れることはありません。この背景で行うことのすべてをラップすることを確認したい場合は、おそらくこれが望ましいでしょう:
<DataTemplate x:Key="expanderHeader">
<Border Background={StaticResource myBrush}>
<ContentPresenter Content={Binding}/>
</Border>
</DataTemplate>
あなたが何をスタイリングしたいかに依存します-あなたはそれのどの部分でもスタイリングできます。ヘッダーのコンテンツを変更する場合は、すべてのUIをExpander.Headerプロパティに配置すると、ヘッダー領域に表示されます。
それがニーズを満たさない場合、おそらくコントロールを再テンプレートする必要があります。 WPFに同梱されているコントロールテンプレートをご覧ください here