Exemplo n.º 1
0
        private void ControlToHook_GotFocus(object sender, EventArgs e)
        {
            widgetToSendTo.OnFocusChanged(e);
            Keyboard.Clear();

            focusedChild?.Focus();
        }
Exemplo n.º 2
0
        private void ControlToHook_GotFocus(object sender, EventArgs e)
        {
            if (IPlatformWindow.EnablePlatformWindowInput)
            {
                widgetToSendTo.OnFocusChanged(e);
                Keyboard.Clear();

                focusedChild?.Focus();
            }
        }