我正在试用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>
1条答案
按热度按时间gab6jxml1#
您必须定义
DragModifiers
和ZoomModifiers
。默认值为Ctrl
和Shift
键。因此使用Shift
+MouseWheel组合进行缩放,使用Ctrl
+LeftButton组合进行平移。