コントロールを境界線で囲んだTextBlock
ので、何がスペースを占めているかがわかります。
XAML は次のとおりです。
<Border BorderBrush="Cyan" BorderThickness="3">
<TextBlock Style="{StaticResource subtitle}" Text="{Binding Title}" >
<TextBlock.RenderTransform>
<RotateTransform Angle="90" />
</TextBlock.RenderTransform>
</TextBlock>
</Border>
問題は、これが必要以上のスペースを占有していることです。静的な幅を設定すると、次のようになります。
助言がありますか?