I can't make text visible on this particular templated button.
I need the Content value to appear on this button.
<ControlTemplate x:Key="BooksButton" TargetType="{x:Type Button}">
<Grid Margin="0,9,0,0">
<Rectangle
x:Name="rctBooks"
Width="97"
Height="40"
Margin="-2,0,-1,-4"
HorizontalAlignment="Left"
VerticalAlignment="Top"
RadiusX="10"
RadiusY="10"
Stroke="AliceBlue"
StrokeThickness="2">
<Rectangle.Fill>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
<GradientStop Offset="0" Color="Black" />
<GradientStop Color="#FFCBC6A9" />
</LinearGradientBrush>
</Rectangle.Fill>
</Rectangle>
</Grid>
</ControlTemplate>
<Button
x:Name="btnMarkTwainStories"
Width="96"
Height="50"
Margin="10,0,0,0"
HorizontalAlignment="Left"
Click="btnMarkTwainStories_Click"
Content="Mark Twain"
FontFamily="Times"
FontSize="24"
Foreground="Black"
Template="{DynamicResource BooksButton}"
>