6

我有绑定到 ObservableCollection 并使用文件名显示图像的列表框 在此处输入图像描述

我的xml是:

<Window x:Class="ThumbnailsView.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="578" WindowStartupLocation="CenterScreen">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="55"/>
        </Grid.RowDefinitions>

            <ListBox Grid.Row="0" x:Name="ImageListbox"
        ItemsSource="{Binding}" 
        Background="AliceBlue" ScrollViewer.HorizontalScrollBarVisibility="Disabled">

                <ListBox.ItemTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Horizontal">
                            <CheckBox Height="16" VerticalAlignment="Top" Margin="0,10,0,0"/>
                            <Image Margin="10,10,10,0" Height="64" Width="64" VerticalAlignment="Top">
                                <Image.Source>
                                    <BitmapImage DecodePixelWidth="64" UriSource="{Binding Path=Name}"/>
                                </Image.Source>                            
                            </Image>
                    </StackPanel>
                    </DataTemplate>
                </ListBox.ItemTemplate>

        <ListBox.ItemsPanel>
                    <ItemsPanelTemplate>
                        <WrapPanel/>
                    </ItemsPanelTemplate>
                </ListBox.ItemsPanel>
            </ListBox>

            <Button Grid.Row="1" Content="Get Images" Name="getImageBtn" Click="getImageBtn_Click" Width="100" Height="30"></Button>

    </Grid>
</Window>

问题是,它会加载整个图像,如果我有大量集合,它将消耗大量内存。如何最小化它的内存消耗?

4

3 回答 3

4

启用 UI 虚拟化。然后 UI 控件将被回收并使用最少的内存。

您还可以加载缩略图而不是完整的照片。


一些要阅读的资源:

http://www.codeproject.com/Articles/34405/WPF-Data-Virtualization https://stackoverflow.com/questions/14456075/how-to-enable-ui-virtualization-in-standard-wpf-listview WPF ListBox使用 ListBox - UI 虚拟化和滚动 http://www.zagstudio.com/blog/497#.UQKxpScqb6U

于 2013-01-25T16:20:25.450 回答
0

加载图像后,将其调整为更易于管理的大小,然后释放未使用的大图像。这仍然需要很长时间才能加载,但会占用更少的内存。要减少加载时间,请参阅dutzu's答案并使用延迟加载和虚拟化。

于 2013-01-25T16:24:26.280 回答
0

使用虚拟化堆栈面板查看链接以获取有关如何执行此操作的示例。

http://www.jonathanantoine.com/2011/10/07/wpf-4-5-%E2%80%93-part-11-new-features-for-the-virtualizingpanel/

于 2013-01-25T16:24:38.067 回答