如何在用户控件中公开自定义控件属性?

时间:2010-08-19 03:53:39

标签: .net wpf user-controls custom-controls dependency-properties

我有一个名为TextBoxWithLabelAndUnits的自定义控件。从名称中,您可以看出它是TextBox,前面有Label,后面有Label,因此自定义控件如下所示:

       -----------------
Label: |               | units
       -----------------

我公开了几个依赖项属性来配置控件,例如:

LabelWidth
LabelText
UnitText
TextBoxWidth

现在我有一个名为LatLong的用户控件,我正用于纬度/经度输入。 XAML看起来像这样:

<UserControl ...>
    <StackPanel>
        <TextBoxWithLabelAndUnits LabelText="Latitude:"
                                  UnitText="degrees"
        />
        <TextBoxWithLabelAndUnits LabelText="Longitude:"
                                  UnitText="degrees" 
        />
    </StackPanel>
</UserControl>

它将创建一个如下所示的用户控件:

           -----------------
Latitude:  |               | degrees
           -----------------
           -----------------
Longitude: |               | degrees
           -----------------

现在我想在项目中使用我的用户控件。但是,我希望用户控件公开属性,这样如果我不喜欢默认设置,我可以更改标签。我可以将每个作为新的依赖项属性公开,如下所示:

LatitudeLabelWidth
LatitudeLabelText
LatitudeUnitText
LatitudeTextBoxWidth

LongitudeLabelWidth
LongitudeLabelText
LongitudeUnitText
LongitudeTextBoxWidth

使用LatLong控件的XAML将如下所示:

<Window ...>
    <LatLong LatitudeLabelText="Latitude (in degrees)"
             LatitudeUnitText=""
             LongitudeLabelText="Longitude (in degrees)"
             LongitudeUnitText=""
    />
</Window>

但是这似乎很多工作,因为我必须为每个实例重新公开每个依赖属性。我想知道是否有更简单的方式公开TextBoxWithLabelAndUnits实例本身,所以我可以直接在其上编辑属性并使用如下所示的XAML:

<Window ...>
    <LatLong Latitude.LabelText="Latitude (in degrees)"
             Latitude.UnitText=""
             Longitude.LabelText="Longitude (in degrees)"
             Longitude.UnitText=""
    />
</Window>

换句话说,不是在用户控件中公开每个自定义控件的属性,而是公开自定义控件本身并使用点表示法访问所有属性。

有人知道在WPF中是否可以做到这一点吗?

1 个答案:

答案 0 :(得分:3)

当然 - 你为什么不给你的LatLong这两个属性?

public TextBoxWithLabelAndUnits LatitudeControl
{
    get { return latitude; }
}

public TextBoxWithLabelAndUnits LongitudeControl
{
    get { return longitude; }
}

然后可以通过代码直接访问它们。