Hello I have a custom control. This custom control has it's DataContext set to an entity. In my custom control I then bind some TextBlocks to various properties of this entity.
I would also like to bind a TextBlock to a property of the control's class. I do not want/need to set this property through the XAML.
Something like
<TextBlock Content="{Binding Path=MyControl.Property}" />
Right now, my it seems to be trying to use the bound entity to resolve this binding, rather than my custom control's class.