I created a UserControl with a Label and a Rectangle inside 2 grid rows. I added the property
public string SetText
{
get
{
return (string)GetValue(mLabel.ContentProperty);
}
set
{
SetValue(mLabel.ContentProperty, value);
}
}
Usage of the property
<local:PlayerMiniImage SetText="Player 1" ...
When I used the property, the font of the label changed and the rectangle disappeared Have any idea?
If you define a UserControl...
Then everything inside it, here a
Border
, is theContent
, hence if you set theContentProperty
everything will be replaced.To set the label content create a new DP:
and bind the label to it: