WPF ContentControl 模板不会显示内容

问题描述 投票:0回答:1
wpf xaml
1个回答
0
投票

您忘记指定 ControlTemplate 的 TargetType:

<ControlTemplate x:Key="GroupBoxTemplate" TargetType="ContentControl">
    <GroupBox Header="ASD">
        <ContentPresenter/>
    </GroupBox>
</ControlTemplate>
© www.soinside.com 2019 - 2024. All rights reserved.