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

时间:2014-08-25 09:27:14

标签: c# windows-runtime windows-8.1 search-box

我正在编写一个Windows 8.1 Store App,它在GridViewSearchBox顶部显示所有系统颜色。当我输入搜索查询时,我希望建议显示带有填充建议颜色的矩形的结果建议,但我无法设置DataTemplate。提供该矩形的唯一方法是IRandomAccessStreamReference内的图像。

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

1 个答案:

答案 0 :(得分:0)

您可以使用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);

我知道它看起来相当hacky但它​​就像一个魅力!