Skip to content

Commit

Permalink
Windows8 RibbonWindowTitleTextGlowBackground was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
maurosampietro authored and batzen committed Feb 5, 2016
1 parent 36525e7 commit 73fd89d
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion Fluent.Ribbon/Themes/Windows8/Controls/Ribbon.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,21 @@
</MultiBinding>
</Fluent:RibbonTitleBar.Margin>
<Fluent:RibbonTitleBar.Header>
<Grid>
<Grid>
<Rectangle x:Name="rectangle"
Fill="{DynamicResource RibbonWindowTitleTextGlowBackground}"
Stroke="{x:Null}"
StrokeThickness="0"
HorizontalAlignment="Center"
VerticalAlignment="Center"
Width="{Binding ActualWidth, ElementName=PART_Title, Mode=Default}"
Height="{Binding ActualHeight, ElementName=PART_Title, Mode=Default}"
RadiusX="2"
RadiusY="2">
<Rectangle.Effect>
<BlurEffect Radius="10" />
</Rectangle.Effect>
</Rectangle>
<TextBlock x:Name="PART_Title"
Padding="4,0,4,0"
VerticalAlignment="Center"
Expand Down

0 comments on commit 73fd89d

Please sign in to comment.