Xceed WPF工具包中的缩放框不工作

dl5txlt9  于 2022-12-14  发布在  其他
关注(0)|答案(1)|浏览(138)

我正在试用Xceed的Zoombox控件,但是我无法让它响应鼠标滚轮或平移事件。当我使用这些输入时,没有任何React。我的代码或配置中是否遗漏了什么?
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>
gab6jxml

gab6jxml1#

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

相关问题