我正在尝试使用Zoombox
中的Xceed
控件。不幸的是,鼠标滚轮或平底锅上没有任何 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>
最佳答案
您必须定义DragModifiers
和ZoomModifiers
。默认值为Ctrl
和Shift
键。因此,请结合使用Shift
+ MouseWheel 进行缩放,并使用Ctrl
+ LeftButton 进行平移。
关于c# - Xceed WPF工具包中的Zoombox无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45774632/