如何设置标签的文本

时间:2013-05-06 17:30:59

标签: wpf user-controls dependency-properties

我有一个我想要放在FixedDocument中的usercontrol,但在我这样做之前,我需要更改标签的文本。我想我需要使用依赖属性。

这是简化的XAML。

<UserControl x:Class="PrinterTest.TestControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300"
             DataContext="{Binding RelativeSource={RelativeSource Self}}">
    <Grid>
        <Label Content="{Binding LabelCaption}"
               Height="24" HorizontalContentAlignment="Right" Name="lblCaption"     
               Width="140" />
    </Grid>
</UserControl>

代码隐藏

public partial class TestControl : UserControl
{
    public TestControl()
    {
        InitializeComponent();
    }

    public readonly static DependencyProperty 
        LabelCaptionDP = DependencyProperty.Register("LabelCaption",
                                                     typeof(string), 
                                                     typeof(TestControl),
                                                     new FrameworkPropertyMetadata("no data"));

    public string LabelCaption
    {
        get { return (string)GetValue(LabelCaptionDP); }
        set { SetValue(LabelCaptionDP, value); }
    }

在调用位中,我按TestControl myControl = new TestControl();

进行实例化

我做错了什么,因为我无法访问控件的新副本中的属性?谢谢!

1 个答案:

答案 0 :(得分:2)

LabelCaptionDP更改为LabelCaptionProperty

来自Dependency Properties Overview

  

属性的命名约定及其支持   DependencyProperty字段很重要。该字段的名称始终是   属性的名称,后缀为Property。更多   有关此约定的信息及其原因,请参阅自定义   依赖属性。

请参阅Custom Dependency Properties中的依赖项属性名称约定