我正在尝试使用其图像获取RSS文本,但图像无法显示我将查看获取图像的模型并使用简单的RSS技术获取图像,您会告诉我如何获取图像和文本..... .. 这是我的XAML代码:
<ListBox Name="lstRSS" ItemsSource="{Binding FeedItems}" DataContext="{StaticResource MainViewModel}" FontSize="30" Grid.Row="1">
<ListBox.ItemTemplate>
<DataTemplate>
<Grid Height="700">
<TextBlock Text="{Binding Path=Title}"></TextBlock>
<UserControls:Loader Width="100" Height="100" />
<Image Source="{Binding Link}" Width="450" Height="350" />
</Grid>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<VirtualizingStackPanel />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
答案 0 :(得分:0)
您无法以这种方式绑定到URL,因为String / Uri不是Image.Source属性的有效值。如果在xaml中设置了常量URL,则图像将正确显示,因为编译器生成的代码将获取URL并将其转换为BitmapSource。
要以这种方式绑定图片网址,您需要converter。转换器可以获取URL并将其转换为BitmapImage:
public class UriToImageConverter : IValueConverter
{
#region IValueConverter Members
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
// This could be extended to accept a Uri as well
string url = value as string;
if (!string.IsNullOrEmpty(url))
{
return new BitmapImage(new Uri(url, UriKind.RelativeOrAbsolute));
}
else
{
return null;
}
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
throw new NotImplementedException();
}
#endregion
}
然后,您需要将此类的实例添加到应用程序资源(在app.xaml或页面xaml中):
<local:UriToImageConverter x:Key="ImageConverter"/>
然后您可以像这样设置绑定:
<Image Source="{Binding Link, Converter={StaticResource ImageConverter}}" />