I created a custom controll in expression Blend and added a property. I found the property in Blend, but the option for create a databinding isn’t available. What do I have to make that I can add databindings through Blend?
Code Property:
public string TileText
{
get { return this.labelTileText.Text; }
set { this.labelTileText.Text = value; }
}
If you want to enable databinding on a property of a custom control, you need to create a dependency property for that property.
The property:
Dependency property:
And then you should implement that callBack function that to be called whenever ‘TileText’ property is changed.