1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| ......
<ControlTemplate TargetType="{x:Type local:CC_Metric}">
<Border Name="Borderb"
Width="{Binding Width, RelativeSource={RelativeSource TemplatedParent}}"
Height="{Binding Height, RelativeSource={RelativeSource TemplatedParent}}"
Background="{TemplateBinding Background}"
BorderBrush="{TemplateBinding BorderBrush}"
BorderThickness="{TemplateBinding BorderThickness}"
>
<Grid Name="GContner"
Width="{Binding ElementName=Borderb, Path=Width}"
Height="{Binding ElementName=Borderb, Path=Height}"
DataContext ="{Binding Path=Metric, RelativeSource={RelativeSource TemplatedParent}}"
>
<ItemsControl ItemsSource="{Binding Plages}" ItemTemplate="{StaticResource PlagesDataTemplate}" x:Name="listBox" >
......
.......
</ItemsControl> |
Partager