リボンウィンドウのタイトルを中央に配置し、横に並べないようにします。
このスレッドは、答えがあると述べています: XAMLコードを介してWPFリボンウィンドウタイトルを中央に配置する
しかし、それは機能しませんでした。
以下は画像と対応するコードです。
<RibbonWindow x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<Grid>
<Ribbon>
<Ribbon.TitleTemplate>
<DataTemplate>
<TextBlock TextAlignment="Center" HorizontalAlignment="Stretch" Width="{Binding ElementName=Window, Path=ActualWidth}">ApplicationTitle
<TextBlock.Effect>
<DropShadowEffect ShadowDepth="0" Color="MintCream " BlurRadius="10" />
</TextBlock.Effect>
</TextBlock>
</DataTemplate>
</Ribbon.TitleTemplate>
</Ribbon>
</Grid>
</RibbonWindow>
.NET4.5と付属のSystem.Windows.Controls.Ribbonアセンブリを備えたVS2012を使用しています。