Это часть TabItem. Вы можете добавить сеттер в стиле элемента вкладки в вашем ресурсе, который должен выполнять работу:
<Style TargetType="{x:Type TabItem}">
<Setter Property="BorderBrush" Value="Red"/>
</Style>
И результат будет таким:
В качестве альтернативы:
Вы можете полностью удалить его, но, к сожалению, это часть шаблона, и шаблон необходимо изменить:
В Visual Studio Designer щелкните правой кнопкой мыши один из элементов вкладки и go, чтобы «Редактировать шаблон», затем «Редактировать копию».
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TabItem}">
<Grid x:Name="templateRoot" SnapsToDevicePixels="true">
<Border x:Name="mainBorder" BorderBrush="Red" BorderThickness="0" Background="{TemplateBinding Background}" Margin="0">
<Border x:Name="innerBorder" BorderBrush="{StaticResource TabItem.Selected.Border}" BorderThickness="0" Background="{StaticResource TabItem.Selected.Background}" Margin="-1" Opacity="0"/>
</Border>
<ContentPresenter x:Name="contentPresenter" ContentSource="Header" Focusable="False" HorizontalAlignment="{Binding HorizontalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}" Margin="{TemplateBinding Padding}" RecognizesAccessKey="True" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{Binding VerticalContentAlignment, RelativeSource={RelativeSource AncestorType={x:Type ItemsControl}}}"/>
</Grid>
Там вы должны изменить BorderThichness
из mainBorder
и innerBoarder
на BorderThickness="0"
Результат: