- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
Lync 有一些热键/快捷键用于更改联系人列表控件中的选项卡。这些热键是“g”、“s”和“r”。当我按下这些键中的任何一个时,同时将 HTML 输入控件聚焦在任何网页上的 WebBrowser 内,按键将转到 ContactList 控件而不是 WebBrowser 控件。在浏览器外部的控件(如 WPF TextBox 控件)中键入时,不会窃取按键。
将以下代码粘贴到 MainWindow.xaml 的 Window 元素中
<Window...
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<controls:ContactList Name="contactList1" Grid.Column="0" />
<WebBrowser Grid.Column="1" Source="http://www.google.com" />
</Grid>
在 google 搜索框中按“r”、“g”或“s”键,注意按键是如何转到 lync 控件而不是搜索框的。任何其他键都正常工作。
我试图阻止键事件冒泡到 ContactList 控件。然而,我在这方面并没有取得太大的成功。
最佳答案
在这里找到答案:AccessKey Pressed Event Raised when pressing access key without ALT
出现此行为是因为 WPF 不需要按住 alt 键来使 AccessKeys 起作用。与 WinForms 一样。在这种情况下,从 WebBrowser 中按“g”、“s”或“r”会聚焦 ClientControl,但我只希望在按住 alt 时发生这种情况。我不知道为什么这个问题似乎只发生在 WebBrowser 上。
来自 msdn 链接:
We have defined an access key on a label, which gives focus to a textbox.
We have a second readonly textbox on the same user control.
When clicking inside the readonly textbox and pressing the access key without ALT (e.g. L instead of ALT + L) the focus change is done anyway.
Is it possible to disable this behaviour, i.e. is it possible to ensure, that the access key is only working when pressed together with ALT?
The following xaml shows the issue:
<Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
SizeToContent="Height"
Width="300" WindowStartupLocation="CenterScreen">
<StackPanel Orientation="Vertical">
<TextBox IsReadOnly="True" Text="ReadOnly - give focus and press l" />
<Label Content="_Label:" Target="{Binding ElementName=box}"/>
<TextBox x:Name="box" />
</StackPanel>
</Window>
Menu and ToolBar menmonics work without pressing Alt key. We decided that we will have uniform behavior in all cases so access key work withour pressing Alt key.
I understand that this is not in parity with Forms and we will consider this issue and change the behavior in the next version.
For now as a workaround you can redister a class handler for all AccessKeyPressed events and handle the event if Alt key is not pressed.
EventManager.RegisterClassHandler(typeof(UIElement), AccessKeyManager.AccessKeyPressedEvent, new AccessKeyPressedEventHandler(OnAccessKeyPressed));
private void OnAccessKeyPressed(object sender, AccessKeyPressedEventArgs e)
{
if (!e.Handled && e.Scope == null && (e.Target == null || e.Target == label))
{
// If Alt key is not pressed - handle the event
if ((Keyboard.Modifiers & ModifierKeys.Alt) != ModifierKeys.Alt)
{
e.Target = null;
e.Handled = true;
}
}
}
我将解决方案代码添加到 MainWindow 类,一切都按预期工作。
关于c# - Lync ContactList WPF 控制热键/快捷键从 WebBrowser 窃取按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16329452/
说我有 some text google 我想给h3附加一个点击事件 $("h3").click(function(){ $(this).slideDown(); return false
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题? Update the question所以它是on-topic对于堆栈溢出。 10年前关闭。 Improve this qu
据说当您使用 ssl 时,您可以防止中间人从服务器窃取信息到客户端,反之亦然。在我的例子中,窃取了 jsonwebtoken。我还从其他答案中了解到,ssl 使用私钥和公钥。私钥存储在服务器上,公钥提
我已经阅读了 Stack Overflow 上的其他问题,但没有找到这个问题的明确答案: 是什么阻止了攻击者通过 JS 窃取用户的 CSRF token ?他不能直接找到 CSRF 元素并用 JS 获
我认为有人在使用 iframe 窃取我的内容。我的网站是一个论坛,一个用户刚刚向我报告了他们。 如果其他人这样做,我如何以编程方式(php、JavaScript、jQuery、HTML)找到他们的网站
我正在使用 SSL 传输所有数据。 HTTP 已完全禁用。除了恶意软件,或者访问某人的物理机器(这两者都很难从服务器端阻止),我不知道攻击者如何窃取登录 cookie。 因此,不用担心窃取登录 coo
有一个 QQuickPaintedItem 带有重载的鼠标事件处理程序: void Plotter::mousePressEvent(QMouseEvent *event) { qDebug(
我正在学习 Caja,我对“this”-stealing 的概念感到困惑: Another security vulnerability that Caja addresses is called “
如果使用客户端流,则回调 URL 包含访问 token 。那么如果回调URL是通过HTTP发送的,是不是很容易被捕获和滥用。 如果我的应用程序的用户 2 获得用户 1 的访问 token ,他就可以访
http://jsfiddle.net/wzew9/ #menu { width: 1001px; height: 34px; padding: 0; margin: 0; b
我实现了 OnTouchEvent(我需要对 Action.MOVE 和 Action.Up 使用react)和 OnClick,但它从未进入 OnClick。 OnTouch 窃取了事件。如何解决这
当 SplashScreen 关闭时(手动或通过 AutoClose),它会在淡出动画期间窃取 MainWindow 的焦点。这会导致主窗口的标题从事件切换到非事件(灰色)再到事件。有什么技巧可以防止
使用其他用户在受信任站点植入的 javascript 函数很容易窃取 session ID cookie。针对这种攻击有哪些可能的反制措施? 在客户端拒绝所有 javascript 脚本可能很困难,因
我有一个网站想要为登录用户提供 YouTube 视频内容(我自己负责以 SSO 方式登录用户)。 因此,我们的想法是视频只能在嵌入到页面中时才能看到(例如以 iFrame 或类似方式)。复制 URL
我在另一个 NSView 中有几个类 MyView(NSView 的子类)的 View 。 MyView 实现 -mouseEntered:, -mouseExited:, -mouseDown:,
我是 flatbuffer 的新手,我想知道是否可以完全(不是 const*)访问 flatbuffers::Vector 中的数据。看看下面的例子,我想窃取 img2::mem::data 的所有权
我有一个带有用户控件的 ASP.Net 页面。页面的提交按钮在用户控件内。页面本身(在用户控件之外)有一个 ImageButton。每当我按回车键提交表单时,它总是执行 ImageButton 单击而
我在Unity中编写了自己的组件,它实现了IBeginDragHandler、IDragHandler和IDropHandler。我想添加一个 UnityEngine.UI 附带的 EventTrig
我最近开始使用 knockout.js 和 sammy.js 来使我的应用现代化。但是我遇到了一些问题。 我在页面上有一些有效链接 - 用户应该实际导航到该位置,而不是使用 sammy.js 模仿导航
我已将 HTML 模板上传到 themeforest,但我发现有些网站免费提供完整的源代码。因为它是 HTML,anycone 可以轻松复制它。如果用户在其他网站(跟踪 IP)上托管我的模板而无需购买
我是一名优秀的程序员,十分优秀!