WPF FocusNavigationDirection、MoveFocus 和箭头键 [英] WPF FocusNavigationDirection, MoveFocus and Arrow keys

查看:19
本文介绍了WPF FocusNavigationDirection、MoveFocus 和箭头键的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个简单的应用程序(一个带有 6 个按钮的网格 - 2 行 3 个 - 用于测试)并且正在按如下方式处理左右箭头键

I have a simple application (a grid with 6 buttons - 2 rows of 3 - on it for testing) and am handling left and right arrow keys as follows

    private void Window_PreviewKeyDown(object sender, KeyEventArgs e)
    {
        FocusNavigationDirection focusDirection = new System.Windows.Input.FocusNavigationDirection();

        switch (e.Key)
        {
            case Key.Left:
                focusDirection = System.Windows.Input.FocusNavigationDirection.Left;
                break;
            case Key.Right:
                focusDirection = System.Windows.Input.FocusNavigationDirection.Right;
                break;
            default:
                break;
        }
        TraversalRequest request = new TraversalRequest(focusDirection);

        // Gets the element with keyboard focus.
        UIElement elementWithFocus = Keyboard.FocusedElement as UIElement;

        // Change keyboard focus.
        if (elementWithFocus != null)
        {
            elementWithFocus.MoveFocus(request);
        }

    }

不幸的是,这并不像我预期的那样,因为焦点似乎总是朝着与 FocusNavigationDirection 指定的方向相反的方向移动.

Unfortunately, this doesn't behave as I expect as the focus always seems to move in the opposite direction to that specified by the FocusNavigationDirection.

对为什么会这样有什么想法吗?MSDN Documentation 有点含糊左侧"是如何定义的.

Any thoughts on why this would be? The MSDN Documentation is a bit vague on how "to the left of" is defined.

如果需要,我还将每个按钮的制表位定义为 1 到 6.

In case it is needed, I have also defined the tab stops of each of the buttons as 1 through 6.

推荐答案

为什么要获取 elementWithFocus 而可以使用this"(window own scope)?

Why do you need to get the elementWithFocus while you can use "this" (window own scope)?

我稍微修改了你的代码,它对我有用:

I modified your code a bit and it worked for me:

    private void Window_OnPreviewKeyDown(object sender, KeyEventArgs e)
    {
        switch (e.Key)
        {
            case Key.Left:
                this.MoveFocus(FocusNavigationDirection.Previous);
                break;
            case Key.Right:
                this.MoveFocus(FocusNavigationDirection.Next);
                break;
            default:
                break;
        }
    }

    private void MoveFocus(FocusNavigationDirection direction)
    {
        var request = new TraversalRequest(direction);
        this.MoveFocus(request);
    }

这篇关于WPF FocusNavigationDirection、MoveFocus 和箭头键的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆