Hey so what I am trying to do is to create a custom control which is not more than a content view with an entry and a label. Now in my page.xaml I would like to use that custom control and also attach a behavior to the entry of the custom control.
<CustomControl Title="double entry" >
<CustomControl.Entry.Behavior>
// Attach behaviors
</>
I don't want to define the behaviors in the custom control because the behavior will be page specific.