I have custom control, which is templated like below
Blockquote
<DockPanel>
<local:CustomControl1>
<ToggleButton></ToggleButton>
</local:CustomControl1>
</DockPanel
Blockquote
Problem:
When i press tab key DockPanel can recieves the keyboard focus and but custom control failed to do so. I need to focus the control inside the Custom Control.
Please suggest any solution to resolve this.
Thanks
Maggi