嘿。
我有一个用户可以搜索的项目列表。搜索结果显示在列表框中。每个animal
对象都有一个孤立存储中图像的路径。将listboxitem中的Image控件绑定到隔离存储中的图像的最快方法是什么?我见过的例子倾向于显示来自互联网的图像而不是隔离存储。如果我有大约10张图像,它似乎会占用所有内存并崩溃。感谢
编辑:
我在我的BitmapConverter
类中使用它(继承IValueConverter)
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value !=null)
{
BitmapImage bitmapImage = new BitmapImage();
bitmapImage.SetSource(new MemoryStream((Byte[]) value));
return bitmapImage;
}
else
{
return null;
}
}
我在AppResource.xaml文件的顶部有这个:
<ImageApp_Converter:BitmapConverter x:Key="bmpConverter" />
In my style, within the AppResource.xaml file:
<Image HorizontalAlignment="Left" Margin="8,8,0,4" Width="160" Height="120" Source="{Binding Converter={StaticResource bmpConverter}}" />
我在我的BitmapConverter中设置了一个断点,但它从未被调用过。我之前从未使用过IValueConverter,所以任何帮助都会很棒。感谢
答案 0 :(得分:6)
显示的代码中存在一些问题。您的示例可能只是遗漏了一些内容:
首先,您对转换器的绑定未指定要绑定的以获取其值,因此永远不会调用它。它至少需要一个Path =(或简称一个属性名称作为快捷方式),否则将不会调用转换器。你在哪里设置列表的ItemSource?
其次,传递的值是字符串文件名。您的转换器需要将它们用作文件名,并根据该名称打开流。目前它正在尝试将名称用作字节数组。
最后,如果图像是固定的集合,将它们存储在ClientBin下的图像文件夹中更有意义,只需使用以下路径语法“/images/imagename.jpg”等引用它们。这将涉及到浏览器的自动缓存。你不需要转换器。 (键是前导“/”。如果没有,Silverlight会假定图像位于当前模块中)
以下是使用ClientBin / images文件夹中显示的图像的完整示例,该文件在运行时如下所示:
示例Xaml文件:
<UserControl x:Class="SilverlightApplication1.IsoImages"
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:ImageApp_Converter="clr-namespace:SilverlightApplication1" mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<ListBox x:Name="ImageList">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Background="AliceBlue">
<Image HorizontalAlignment="Left" Margin="8,8,0,4" Width="160" Height="120" Source="{Binding Path=Filename}" />
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
</ListBox>
</Grid>
</UserControl>
背后的示例代码是:
using System.Collections.Generic;
using System.Windows.Controls;
namespace SilverlightApplication1
{
public partial class IsoImages : UserControl
{
public IsoImages()
{
InitializeComponent();
List<ImageItem> images = new List<ImageItem>()
{
new ImageItem("/images/Image1.jpg"),
new ImageItem("/images/Image2.jpg"),
new ImageItem("/images/Image3.jpg"),
new ImageItem("/images/Image4.jpg")
};
this.ImageList.ItemsSource = images;
}
}
public class ImageItem
{
public string Filename{ get; set; }
public ImageItem( string filename )
{
Filename = filename;
}
}
}
答案 1 :(得分:0)
您可能正在耗尽内存,因为您反复将同一文件加载到新的BitmapSource
对象中。您应该只为每个文件创建一个“大约10”BitmapSource
个对象。然后将这些BitmapSource
实例分配给Image.Source
属性,重新使用这些实例。
一种方法是使用IValueConverter
的实现来维护BitmapSource
键值对的文件路径的静态字典。