I made the following XAML path, but would like to add the text “Back” to it.

This is how I add it to ...
<Path Style="{StaticResource BackButton}"> </Path>
However, when I add content inside the path, I get a message
The type 'Path' does not support direct content.
Any tips?
Change is a style
<Style x:Key="BackButton" TargetType="{x:Type Path}"> <Setter Property="Data" Value="F1 M 639.667,236.467L 645.092,236.467L 725.566,236.467L 725.566,253.513L 645.092,253.513L 639.673,253.513L 619.787,244.99L 639.667,236.467 Z " /> <Setter Property="Height" Value="30" /> <Setter Property="MinWidth" Value="100" /> <Setter Property="Fill" Value="#FFFFFFFF" /> <Setter Property="StrokeThickness" Value="1" /> <Setter Property="Stroke" Value="#FF999B9C" /> <Setter Property="Stretch" Value="Fill" /> <Setter Property="Cursor" Value="Hand" /> <Style.Triggers> <Trigger Property="IsMouseOver" Value="true"> <Setter Property="Fill" Value="#FFEEEEEE" /> </Trigger> </Style.Triggers> </Style>
Eddie source share