I'm trying to scale a (Ribbon-)Window using LayoutTransform/ScaleTransform, but this introduces a gap between the Window-title and the ribbon.
Screenshot 1: Not Scaled
Screenshot 2: Scaled to 150%
i'm using the Microsoft Ribbon for WPF October 2010 Control
It's quite easy to reprodruce just with this xaml:
<ribbon:RibbonWindow x:Class="WpfRibbonApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ribbon="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary">
<Grid>
<Grid.LayoutTransform>
<ScaleTransform ScaleX="1.5" ScaleY="1.5"/>
</Grid.LayoutTransform>
<ribbon:Ribbon />
</Grid>
</ribbon:RibbonWindow>
It seems that it's trying to scale the WindowChrome, but isn't able to do it completly because it's rendered by the OS. Does anyone have an idea how to avoid the gap or to work around this issue?