У меня есть 2 DataTemplate
с (A & B). A содержит Expander
, а расширитель HeaderTemplate
направлен на другой DataTemplate
(B).
DataTemplate
B показано ниже:
<DataTemplate x:Key="ProjectExpanderHeader">
<Border CornerRadius="2,2,0,0"
Background="{StaticResource ItemGradient}"
HorizontalAlignment="{Binding HorizontalAlignment,
RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ContentPresenter}},
Mode=OneWayToSource}">
<local:ItemContentsUserControl Height="30"/>
</Border>
</DataTemplate>
Можно ли установить CornerRadius
B's Border
, когда свойство IsExpanded
для A's Expander
установлено в true?
Заранее спасибо.