自定义扩展控件不呈现

时间:2013-07-26 11:30:51

标签: wpf controls custom-controls resourcedictionary wpf-4.0

我已在WPF中创建了此控件:

[ContentProperty("Text")]
[DefaultProperty("Text")]
public class TextElement : Control {

    public static readonly DependencyProperty TextProperty =
        DependencyProperty.Register("Text", typeof(string), 
        typeof(TextElement), new PropertyMetadata(default(string)));

    public static readonly DependencyProperty LabelProperty =
        DependencyProperty.Register("Label", typeof(string), 
        typeof(TextElement), new PropertyMetadata(default(string)));

    [Bindable(true)]
    public string Text {
        get { return (string)GetValue(TextProperty); }
        set { SetValue(TextProperty, value); }
    }

    [Bindable(true)]
    public string Label {
        get { return (string)GetValue(LabelProperty); }
        set { SetValue(LabelProperty, value); }
    }
}

另外,我在项目的/Themes/Generic.xaml中为控件定义了一个默认模板:

<Style x:Key="{x:Type local:TextElement}" TargetType="{x:Type local:TextElement}">
    <Setter Property="SnapsToDevicePixels" Value="True"/>
    <Setter Property="HorizontalAlignment" Value="Stretch" />
    <Setter Property="HorizontalContentAlignment" Value="Left"/>
    <Setter Property="VerticalAlignment" Value="Stretch" />
    <Setter Property="VerticalContentAlignment" Value="Top" />
    <Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.ControlBrush}}"/>
    <Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.ControlTextBrush}}"/>
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:TextElement}">
                <Grid HorizontalAlignment="{TemplateBinding HorizontalAlignment}"
                      VerticalAlignment="{TemplateBinding VerticalAlignment}"
                      SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
                      Background="Yellow"
                      Width="100" Height="30">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="55"/>
                        <ColumnDefinition Width="66"/>
                    </Grid.ColumnDefinitions>
                    <Label Grid.Column="0" x:Name="label" Background="Red" Height="20" Width="20"
                           HorizontalAlignment="Stretch"
                           HorizontalContentAlignment="{TemplateBinding HorizontalContentAlignment}"
                           VerticalAlignment="Stretch"
                           VerticalContentAlignment="{TemplateBinding VerticalContentAlignment}"
                           Content="{TemplateBinding Label}"
                           Style="{TemplateBinding LabelStyle}"/>
                    <ContentPresenter />
                    <TextBlock Text="{TemplateBinding Text}"/>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

但是当我在视图中使用它时,它没有显示出来。我哪里错了?好吗?

2 个答案:

答案 0 :(得分:1)

你必须覆盖DefaultStyleKey元数据,如下所示,表明你已经在Generic.xaml中定义了样式

DefaultStyleKeyProperty.OverrideMetadata(typeof(TestItemsControl), new FrameworkPropertyMetadata(typeof(TestItemsControl)));

在控件的静态构造函数中添加此代码

答案 1 :(得分:0)

哎呀!我发现了这个问题。我只是忘了覆盖元数据。如果遇到同样的问题,请把它放在这里帮助别人。

// in static .ctor
static TextElement() {
    DefaultStyleKeyProperty.OverrideMetadata(
        typeof (TextElement), new FrameworkPropertyMetadata(typeof (TextElement)));
}