我有一个SciChartSurface,我支持缩放如下:
CTRL
Shift
当用户在触控板上水平滚动或使用水平滚轮(拇指滚轮)时,我还想在X方向上启用平移。但是,我不知道该怎么做。
这是我一直在使用的扩展MouseWheelZoomModifier。我可以以某种方式发送有关我的滚动行为的信息吗?我可以以某种方式将侧向/水平滚动视为Shift
+滚动吗?谢谢!
/// <summary>
/// Extended <see cref="MouseWheelZoomModifier"/> which modifies zoom
/// behavior based on modifier keys so that scrolling while holding CTRL
/// zooms vertically and doing so while holding SHIFT pans horizontally.
/// </summary>
class MouseWheelZoomModifierEx : MouseWheelZoomModifier {
public override void OnModifierMouseWheel(ModifierMouseArgs e) {
switch (e.Modifier) {
case MouseModifier.Ctrl:
ActionType = ActionType.Zoom;
XyDirection = XyDirection.YDirection;
break;
case MouseModifier.Shift:
ActionType = ActionType.Pan;
XyDirection = XyDirection.XDirection;
break;
default:
ActionType = ActionType.Zoom;
XyDirection = XyDirection.XDirection;
break;
}
// e.Modifier is set to None so that the base implementation of
// OnModifierMouseWheel doesn't change ActionType and XyDirection again.
e.Modifier = MouseModifier.None;
base.OnModifierMouseWheel(e);
}
}
答案 0 :(得分:1)
在SciChart中,您可以使用ChartModifierBase API添加任何自定义缩放和平移行为。
除了可以覆盖的标准方法(如OnModifierMouseWheel,OnModifierMouseDown,OnModifierMouseUp),您还可以直接在ParentSurface上订阅事件。
查看此知识库文章:Custom ChartModifiers - Part 2 - Custom ZoomPanModifier and Zooming on KeyPress。
最新accompanying source code is here。
所以我的建议是采用SimpleZoomInOutModifier并修改它以响应鼠标滚轮事件而不是关键事件。
这有帮助吗?