Я хотел создать собственные метки shaepd, чтобы символизировать прогресс, как в мастере.
Но когда я установил для свойства Strech значение Fill, ангелы путей различны.
пример скриншота моей проблемы
XAML-код:
<Style x:Key="NavigationStepLabel" TargetType="{x:Type Label}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type Label}">
<Grid>
<Path Fill="{TemplateBinding Background}" Data="M 0,0 h 50 l 5,20 l -5,20 h -50 l 5,-20 l -5,-20" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="2" Stretch="Fill"/>
<ContentPresenter Grid.Column="1" Margin="20,0" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}"/>
</Grid>
</ControlTemplate>
</Setter.Value>
</Setter>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
<Setter Property="HorizontalContentAlignment" Value="Center"/>
<Setter Property="VerticalContentAlignment" Value="Center"/>
<Setter Property="BorderBrush" Value="Gray"/>
</Style>
...
<Label Style="{StaticResource NavigationStepLabel}" Content="Start">
<Label.Background>
...
</Label.Background>
</Label>
Есть ли способ динамически установить размер пути к метке, не имея разных стрелок ангела?