我正在开发 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>
请解释它并解释内容模板的作用。