I made a very simple Yes/No RadioBox control.
In it\'s code behind I have the following BindableProperty:
BindableProperty
public static readonly Bin
I figured it out after a total of 4 hours wasted...
Never do BindingContext = this; in your ContentView, as it hijacks the context from the Page trying to databind to it. Instead use Content.BindingContext = this;
BindingContext = this;
Content.BindingContext = this;