在我的应用程序中,我只检索视频文件的缩略图。我正在使用uwp 社区工具包的AdaptiveGridview和一些其他文件属性来显示在 UI 上。
问题:
- 有些文件返回空缩略图,所以我必须用StoreLogo填充它们的BitmapImage ,然后将其绑定到 UI 上的图像。StoreLogo 在屏幕上看起来很奇怪,因为它的尺寸更大。
- 其他一些文件返回相对较大的缩略图大小,因此在 UI 上看起来很奇怪。
- storeLogo 和较大的缩略图都覆盖了更多空间,因此从 UI 中隐藏了视频文件的标题(因为图像高度和宽度是自动的,因为它们必须响应 AdaptiveGridView)。
期待
我想制定一个解决方案,我可以在所有 3 种情况下检索相同大小的缩略图,即;普通缩略图、更大的缩略图和 storelogo 替代品。我希望所有这些都是根据设备屏幕 PPI 均匀填充和缩放的。
试过了
我试图在 BitmapImage 对象上设置decoderpixelheight和width,但这会修复图像的大小,并且它看起来很狭窄,这对用户来说并不是一个漂亮的外观。我知道它可以通过在 UI 上的图像上设置固定的高度和宽度来实现,但是根据自适应网格视图它不会响应。
代码
XAML
<controls:AdaptiveGridView Name="AllVideosGridView"
Style="{StaticResource MainGridView}"
ItemsSource="{x:Bind ViewModel.Videos}">
<controls:AdaptiveGridView.ItemTemplate>
<DataTemplate x:DataType="data:Video">
<StackPanel Style="{StaticResource MainGridViewStack}" >
<Grid>
<Image Source="{x:Bind Display, Mode=OneWay}" x:Phase="3" Style="{StaticResource GridViewImage}" x:Name="ThumbImage"/>
<Border ... >
<TextBlock ..."/>
</Border>
</Grid>
<TextBlock .../>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Stretch" >
<TextBlock ...>
<TextBlock ..."/>
</StackPanel>
</StackPanel>
</DataTemplate>
</controls:AdaptiveGridView.ItemTemplate>
</controls:AdaptiveGridView>
<...样式...>
<Style TargetType="Image" x:Key="GridViewImage">
<Setter Property="Stretch" Value="UniformToFill"/>
<Setter Property="HorizontalAlignment" Value="Center"/>
<Setter Property="VerticalAlignment" Value="Center"/>
</Style>
<Style TargetType="controls:AdaptiveGridView" x:Key="MainGridView">
<Setter Property="OneRowModeEnabled" Value="False"/>
<Setter Property="DesiredWidth" Value="220"/>
<Setter Property="SelectionMode" Value="Single"/>
<Setter Property="StretchContentForSingleRow" Value="False"/>
<Setter Property="IsItemClickEnabled" Value="True"/>
</Style>
获取 BitmapImage 的函数
public static async Task<BitmapImage> GetDisplay(StorageFile MyVideoFile)
{
var bitm = new BitmapImage();
using (var imgSource = await MyVideoFile.GetScaledImageAsThumbnailAsync(ThumbnailMode.VideosView, 200, ThumbnailOptions.UseCurrentScale))
{
if (imgSource != null) { await bitm.SetSourceAsync(imgSource); }
else
{
var storageLogoFile = await (await Windows.ApplicationModel.Package.Current.InstalledLocation.GetFolderAsync("Assets"))
.GetFileAsync("StoreLogo.png");
bitm.UriSource = new Uri(storageLogoFile.Path);
}
}
return bitm;
}
代码为图像元素赋值
Display = await FileHelper.GetDisplay(file) // Display is property of type ImageSource and is bind to Image element in the datatemplate.
更新
这是显示问题的2个屏幕截图,
- 截图 1:在左下角显示一个标有红色箭头的缩略图,它比其他普通缩略图具有更高的高度,因此它与其他元素重叠,即:视频文件名和它下面的其他内容。
- 屏幕截图 2:显示相同类型的问题,2 个缩略图返回 null,因此被资产中的 StoreLogo.png 替换,它们也显示相同类型的丑陋 UI。
我想修复这两种情况,并希望图像的大小与所有其他普通缩略图完全相同(如屏幕截图所示)。