WPF/Silverlight:防止滚动条上的 ScaleTransform

发布于 2024-11-07 00:34:40 字数 1311 浏览 0 评论 0原文

我想知道是否有一种方法可以将 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 似乎不会粘住。有什么想法吗?

提前致谢。

I'm wondering if there's a way to apply a ScaleTransform to a ScrollViewer and not allow the scrollbars to be scaled.

Here's what I've tried:

<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>

The ScrollBarTransform doesn't seem to stick when moving the slider back and forth. Any thoughts?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

染年凉城似染瑾 2024-11-14 00:34:40

看来没有办法做我正在寻找的事情。如果我遇到正确的方法,我会更新这个答案。

It appears there isn't a way to do what I'm looking for. If I ever come across the proper method I will update this answer.

世俗缘 2024-11-14 00:34:40

为什么不将 ScaleTransform 添加到 ScrollViewer 的内容而不是 ScrollViewer 中?

<ScrollViewer>
    <ContentControl /> <!-- Apply ScaleTransform to this -->
</ScrollViewer>

Why not add your ScaleTransform to the ScrollViewer's content instead of the ScrollViewer?

<ScrollViewer>
    <ContentControl /> <!-- Apply ScaleTransform to this -->
</ScrollViewer>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文