Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

How to ZoomIn WPF ListView Content without zooming scrollviewer?

$
0
0

I have a WPF ListView and a slider to zoom the content of the ListView. When I use the LayoutTransform, the content and the scrollviewer zooming. I want only the listviewitems to zoom but not the scrollviewers. I am a newbie in WPF, please help me providing a solution. Thank you.

------------------------------------

<ListView x:Name="ListView1" SelectionMode="Extended" ScrollViewer.VerticalScrollBarVisibility="Auto" ScrollViewer.HorizontalScrollBarVisibility="Auto">
                <ListView.LayoutTransform>
                <ScaleTransform ScaleX="{Binding ElementName=Slider1, Path=Value}" ScaleY="{Binding ElementName=Slider1, Path=Value}"/>
                </ListView.LayoutTransform>
                <ListViewItem Content="Item1" Width="50" Height="30" Margin="10" Background="LightBlue"/>
                <ListViewItem Content="Item2" Width="50" Height="30" Margin="10" Background="LightGreen"/>
                <ListViewItem Content="Item3" Width="50" Height="30" Margin="10" Background="LightBlue"/>
</ListView>
<Slider Name="Slider1" Minimum="5" />



Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>