我在 Microsoft Visual Studio 2012、C#、WPF 中工作
我的 webview 没有接收到任何鼠标事件。
我需要启用鼠标上的侧按钮来触发前后移动。我有后退/前进的代码只需要拿起鼠标侧面点击。
void MainPage_PointerPressed(object sender, PointerRoutedEventArgs e)
{
if (e.Pointer.PointerDeviceType == Windows.Devices.Input.PointerDeviceType.Mouse)
{
Windows.UI.Input.PointerPoint pt = e.GetCurrentPoint(this);
if (pt.Properties.IsRightButtonPressed)
{
MainPage.Current.WebRightClicked = true;
}
}
}
web.RightClicked 只是一个测试,看看我是否能得到它。我真的很想拿起某人拇指所在的鼠标上的两个侧键。启用历史之间的来回。几乎所有主要的 Web 浏览器都具有此功能。