0

这是我在资源字典中创建的模板

<Style TargetType="{x:Type local:EntryLabelBase}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate  TargetType="{x:Type local:EntryLabelBase}">
                <Border Background="{TemplateBinding Background}"
                        BorderBrush="{TemplateBinding BorderBrush}"
                        BorderThickness="{TemplateBinding BorderThickness}"
                        >
                </Border>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

这是它的用法。

<local:EntryLabelBase Content="Username:" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="1" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="12" />

这是我得到的错误。

'在类型'SPIS_Base.EntryLabelBase'上找不到匹配的构造函数。您可以使用 Arguments 或 FactoryMethod 指令来构造此类型。行号“25”和行位置“10”。

wpf 还是新手。有什么建议么?

4

0 回答 0