gpt4 book ai didi

c# - 在 Windows 8 Store 应用程序中按回车键移动到下一个控件

转载 作者:太空狗 更新时间:2023-10-29 23:08:33 26 4
gpt4 key购买 nike

我有一个带有大量文本框的 Windows 8 商店应用程序。当我按下键盘上的 enter 键时,我希望焦点移动到下一个控件。

我该怎么做?

谢谢

最佳答案

您可以处理文本框上的 KeyDown/KeyUp 事件(取决于您是想在按键开始还是结束时转到下一个)。

示例 XAML:

<TextBox KeyUp="TextBox_KeyUp" />

代码隐藏:

    private void TextBox_KeyUp(object sender, KeyRoutedEventArgs e)
{
TextBox tbSender = (TextBox)sender;

if (e.Key == Windows.System.VirtualKey.Enter)
{
// Get the next TextBox and focus it.

DependencyObject nextSibling = GetNextSiblingInVisualTree(tbSender);
if (nextSibling is Control)
{
// Transfer "keyboard" focus to the target element.
((Control)nextSibling).Focus(FocusState.Keyboard);
}
}
}

完整的示例代码包括 GetNextSiblingInVisualTree() 辅助方法的代码: https://github.com/finnigantime/Samples/tree/master/examples/Win8Xaml/TextBox_EnterMovesFocusToNextControl

请注意,使用 FocusState.Keyboard 调用 Focus() 会在其控件模板中具有此类矩形的元素(例如 Button)周围显示虚线焦点矩形。使用 FocusState.Pointer 调用 Focus() 不会显示焦点矩形(您使用的是触摸/鼠标,因此您知道正在与哪个元素交互)。

关于c# - 在 Windows 8 Store 应用程序中按回车键移动到下一个控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17617332/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com