This can be done with the following code snippet.
[XAML]
<Expander>
<Expander.Header>
<TextBlock Text="Expander header content" Background="AliceBlue"
Width="{Binding
RelativeSource={RelativeSource
Mode=FindAncestor,
AncestorType={x:Type Expander}},
Path=ActualWidth}"/>
</Expander.Header>
<TextBlock Background="Gray" Text="Expander body content"/>
</Expander>
Permalink