0

在我的应用程序中,我只检索视频文件的缩略图。我正在使用uwp 社区工具包的AdaptiveGridview和一些其他文件属性来显示在 UI 上。

问题:

  1. 有些文件返回空缩略图,所以我必须用StoreLogo填充它们的BitmapImage ,然后将其绑定到 UI 上的图像。StoreLogo 在屏幕上看起来很奇怪,因为它的尺寸更大。
  2. 其他一些文件返回相对较大的缩略图大小,因此在 UI 上看起来很奇怪。
  3. 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。

在此处输入图像描述

我想修复这两种情况,并希望图像的大小与所有其他普通缩略图完全相同(如屏幕截图所示)。

4

1 回答 1

2

我认为您的问题可以StackPanel通过ItemTemplateGrid.

原因是StackPanel将给孩子要求的任何东西,其中 aGrid可以将其孩子限制在成比例的大小。在您的情况下,无论每个图块有多大或多小,您都希望所有图像具有相同的比例大小。一个例子是——

<Grid>
    <Grid.RowDefinitions>
        <RowDefinition Height="3*" /> <!--This row will take 75% of the rest of the space (i.e. total height - the height of the 3rd row)-->
        <RowDefinition Height="1*" /> <!--This row will take 25% of the rest of the space (i.e. total height - the height of the 3rd row)-->
        <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>

    <Image Stretch="UniformToFill" Grid.Row="0" /> <!--0 is the default so you can safely remove Grid.Row="0" here-->
    <TextBlock Grid.Row="1" />
    <TextBlock Grid.Row="2" />
</Grid>

实际上,我在我开发的一个应用程序中确实做到了这一点(0:06)。:) 请注意,图像都具有不同的大小,但它们在图块上看起来是相同的。

于 2017-06-07T11:48:05.543 回答