我想知道是否有办法将ScaleTransform应用于ScrollViewer并且不允许滚动条缩放。
这是我尝试过的:
<Window x:Class="Zoom.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<ScaleTransform x:Key="ScrollBarTransform" ScaleX="1.0" ScaleY="1.0" />
<Style TargetType="ScrollBar">
<Setter Property="LayoutTransform" Value="{StaticResource ScrollBarTransform}" />
</Style>
</Window.Resources>
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<ScrollViewer Grid.Row="0">
<ScrollViewer.LayoutTransform>
<ScaleTransform ScaleX="{Binding ElementName=scaleSlider, Path=Value}"
ScaleY="{Binding ElementName=scaleSlider, Path=Value}" />
</ScrollViewer.LayoutTransform>
</ScrollViewer>
<Slider Grid.Row="1" Name="scaleSlider" Value="1" Minimum="0.5" Maximum="5.0" TickFrequency="0.25" />
</Grid>
当前后移动滑块时,ScrollBarTransform似乎不会粘住。有什么想法吗?
提前致谢。
答案 0 :(得分:1)
似乎没有办法去做我正在寻找的东西。如果我遇到过正确的方法,我会更新这个答案。
答案 1 :(得分:0)
为什么不将ScaleTransform添加到ScrollViewer的内容而不是ScrollViewer?
<ScrollViewer>
<ContentControl /> <!-- Apply ScaleTransform to this -->
</ScrollViewer>