How do I set the target property on a label?

Viewed 8914

The following code:

    <TextBlock Name="foo"></TextBlock>
    <Label Target="foo">_Delta pressure</Label>

Generates the following design time error:

Error 1 Value 'foo' cannot be assigned to property 'Target'. Property 'Target' of type 'UIElement' cannot be specified as a string. C:\Programming\WpfCustomPlot\SPT.Olga.Plot.Custom\PumpCurves\View\RatedValuesView.xaml 65 45 SPT.Olga.Plot.Custom

And the following runtime error:

'UIElement' type does not have a public TypeConverter class. Error at Line 65 Position 45.

What am I doing wrong?

2 Answers
Related