zoukankan
html css js c++ java
WPF中,如何从Toolbar中跳出Tab循环
WPF中,如何从Toolbar中跳出Tab循环
周银辉
WPF中. 在Toolbar中连续使用Tab键时,其会循环与其中.你可以运行以下代码并发现该问题:
<
Window
xmlns
="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys
="clr-namespace:System;assembly=mscorlib"
xmlns:x
="http://schemas.microsoft.com/winfx/2006/xaml"
>
<
DockPanel
>
<
ToolBar
DockPanel.Dock
="Top"
>
<
Button
Content
="B"
Command
="EditingCommands.ToggleBold"
/>
<
Button
Content
="U"
Command
="EditingCommands.ToggleUnderline"
/>
<
Button
Content
="I"
Command
="EditingCommands.ToggleItalic"
/>
</
ToolBar
>
<
RichTextBox
/>
</
DockPanel
>
</
Window
>
如何跳出该循环呢, 很简单, 将TabBar的
TabNavigation
属性设置为Continue就可以了 : )
运行以下代码你会发现, Tab键焦点可以从按钮"I"跳转到RichTextBox
<
Window
xmlns
="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:sys
="clr-namespace:System;assembly=mscorlib"
xmlns:x
="http://schemas.microsoft.com/winfx/2006/xaml"
>
<
DockPanel
>
<
ToolBar
DockPanel.Dock
="Top"
KeyboardNavigation.TabNavigation
="Continue"
>
<
Button
Content
="B"
Command
="EditingCommands.ToggleBold"
/>
<
Button
Content
="U"
Command
="EditingCommands.ToggleUnderline"
/>
<
Button
Content
="I"
Command
="EditingCommands.ToggleItalic"
/>
</
ToolBar
>
<
RichTextBox
/>
</
DockPanel
>
</
Window
>
查看全文
相关阅读:
ci
RN开发杂记
‘100%’wuxiao
Statezhong shiyong redux props
assemble、compile、make、build和rebuild的关系
promise
React Native 通过navigation实现页面间传值
react native redux
js中 === 整形和字符串比较
React Native 中使用Redux
原文地址:https://www.cnblogs.com/zhouyinhui/p/742096.html
最新文章
mysql update 在字段值结尾追加
windows下nodejs环境配置
MySQL server has gone away
wamp出现You don’t have permission to access/on this server提示
input输入框自动获取焦点
linux 定时任务
ubantu lamp环境安装
Base64图片编码的使用
③ Python3.0 数字类型
② Python3.0 运算符
热门文章
① Python3.0基础语法
所谓的大厂让人思考人生
Python、PyCharm、Django框架安装
SonarQube使用教程
DBUnit使用介绍
TestCase和TestSuite详解
【转载】ThreadLocal与引用类型相关知识点
React Navigation / React Native Navigation 多种类型的导航结合使用,构造合理回退栈
React native项目后期调整UI总结
DeviceEventEmmiter使用
Copyright © 2011-2022 走看看