Problem solved, in my case I wanted to force the focus when initializing my UserControl only it did not go through GotFocus, I understood that it was necessary to set a param to true like here
_inputControl.Focusable = true;
_inputControl.Loaded += (_, __) => _inputControl.Focus();