Xceed WPF 工具包中的 Zoombox 无法正常工作

Zoombox from Xceed WPF Toolkit not working

我正在试验 Zoombox 来自 Xceed 的控制。不幸的是,鼠标滚轮或平移没有任何反应。我在这里遗漏了什么吗?

https://github.com/xceedsoftware/wpftoolkit

<Window x:Class="UI.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
        xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"
        xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"

        mc:Ignorable="d"
        Title="MainWindow" Height="800" Width="700">
    <Grid>
        <xctk:Zoombox MinScale="0.5" MaxScale="100" >
            <Grid Width="600" Height="400" Background="Yellow">
                <Ellipse Fill="Blue" />
            </Grid>
        </xctk:Zoombox>
    </Grid>

</Window>

您必须定义 DragModifiersZoomModifiers。默认值为 CtrlShift 键。因此,请使用组合 Shift+MouseWheel 进行缩放,并使用 Ctrl+LeftButton 进行平移。