我正在编写一个Windows 8.1 Store App,它在GridView
和SearchBox
顶部显示所有系统颜色。当我输入搜索查询时,我希望建议显示带有填充建议颜色的矩形的结果建议,但我无法设置DataTemplate。提供该矩形的唯一方法是IRandomAccessStreamReference
内的图像。
那么,如何在该建议中获得一个100x100像素的矩形?
答案 0 :(得分:0)
您可以使用RandomAccessStreamReference.CreateFromStream
为AppendResultSuggestion
创建一个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但它就像一个魅力!