WinRT:如何为SearchBox建议创建一个填充了一种颜色的图像文件或流

本文关键字:一种 颜色 文件 图像 填充 SearchBox WinRT 创建 一个 | 更新日期: 2023-09-27 18:19:28

我正在编写一个windows 8.1商店应用程序,它在顶部的GridViewSearchBox中显示所有系统颜色。当我键入搜索查询时,我希望建议显示一个矩形的结果建议,其中填充了建议的颜色,但我无法设置DataTemplate。提供该矩形的唯一方式是作为IRandomAccessStreamReference内的图像。

那么,在这个建议中,我如何获得一个100x100像素的矩形

WinRT:如何为SearchBox建议创建一个填充了一种颜色的图像文件或流

您可以使用RandomAccessStreamReference.CreateFromStreamAppendResultSuggestion创建IRandomAccessStreamReference,您只需要一个包含图像数据的RandomAccessStream。

为此,您可以使用以下方法:

private async Task<InMemoryRandomAccessStream> CreateInMemoryImageStream(Color fillColor, uint heightInPixel, uint widthInPixel)
    {
        var stream = new InMemoryRandomAccessStream();
        var encoder = await BitmapEncoder.CreateAsync(BitmapEncoder.JpegEncoderId,stream);
        List<Byte> bytes = new List<byte>();
        for (int x = 0; x < widthInPixel; x++)            
        {
            for (int y = 0; y < heightInPixel; y++)
            {
                bytes.Add(fillColor.R);
                bytes.Add(fillColor.G);
                bytes.Add(fillColor.B);
                bytes.Add(fillColor.A);                   
            }   
        }
        encoder.SetPixelData(BitmapPixelFormat.Rgba8, BitmapAlphaMode.Ignore, widthInPixel, heightInPixel, 96, 96, bytes.ToArray());
        await encoder.FlushAsync();
        return stream;
    }

之后,您可以致电:

args.Request.SearchSuggestionCollection.AppendResultSuggestion("Green", string.Empty, string.Empty, await CreateInMemoryImageStream(Colors.Green), string.Empty);

我知道它看起来很粗糙,但它的效果很有魅力!