7

I can't seem to find a Label control in Silverlight. I get compile errors if I put anywhere in my XAML.

AnthonyWJones
  • 187,081
  • 35
  • 232
  • 306
skb
  • 30,624
  • 33
  • 94
  • 146

3 Answers3

6

TextBlock is roughly the same as a Label from WinForms.

As per MSDN:

The TextBlock control is the primary element for displaying text in Silverlight based applications.

Provides a lightweight control for displaying small amounts of text...

EDIT: I just noticed your tag for Silverlight 3. Label should be built into Silverlight 3 so are you sure your not using 2?

You might want to consider a TextBlock depending on how your using it. Again per MSDN:

A Label control displays a caption, required field indicator, and validation error indicator to the user. It is typically used together with an input control, such as a TextBox. If you do not need to display required field or validation indicators, you can use the TextBlock control instead.

Kelsey
  • 47,246
  • 16
  • 124
  • 162
3

Try this article. Apparently, you need to install the Silverlight Toolkit.

Traveling Tech Guy
  • 27,194
  • 23
  • 111
  • 159
2

Just use the TextBlock...?

Michael

Michael Ulmann
  • 1,077
  • 5
  • 16