私は WPF に取り組んでいますが、UI はグジャラート語用にローカライズされています。私の window.xaml には、2 つの行と 2 つの列があります。
HeaderedContentControl タグを使用できませんでした。コードは次のとおりです。
<Border
Grid.Row="1" Grid.Column="1"
Style="{StaticResource MainBorderStyle}"
Padding="0"
BorderThickness="0,0,0,1"
Background="#f9f9f9">
<HeaderedContentControl
VerticalContentAlignment="Stretch"
Content="{Binding Path=CurrentWorkspace}"
Style="{StaticResource MainWorkspaceStyle}"
ContentTemplate="{StaticResource WorkspaceTemplate}"/>
</Border>
それを説明し、コンテンツ テンプレートの役割も説明してください。