c# – 来自Xceed WPF Toolkit的Zoombox无法正常工作
作者:互联网
我正在尝试使用Xceed的Zoombox控件.不幸的是鼠标滚轮或平底锅没有任何反应我在这里错过了什么吗?
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>
解决方法:
您必须定义DragModifiers和ZoomModifiers.默认值为Ctrl和Shift键.因此,使用Shift MouseWheel组合进行缩放,并使用Ctrl LeftButton进行平移.
标签:c,wpf,xaml,wpftoolkit,xceed 来源: https://codeday.me/bug/20190622/1264290.html