gpt4 book ai didi

microsoft-band - 很难创建 Microsoft Band 磁贴图标

转载 作者:行者123 更新时间:2023-12-01 09:54:53 24 4
gpt4 key购买 nike

Microsoft Band SDK 文档中提到使用 WriteableBitmap 创建磁贴图标,但如何让它指向我为磁贴制作的现有图像?

最佳答案

如果您的 Windows Phone 应用程序有一个名为“Assets/Icon1.png”的 Assets ,那么该 Assets 可以通过类似的方式变成 BandIcon:

using Microsoft.Band;
using Microsoft.Band.Tiles;
using Microsoft.Band.Tiles.Pages;
using Windows.Storage;
using Windows.Storage.Streams;
using Windows.UI;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Media.Imaging;

...

StorageFile imageFile = await StorageFile.GetFileFromApplicationUriAsync(new Uri("ms-appx:///Assets/Icon1.png"));
using (IRandomAccessStream fileStream = await imageFile.OpenAsync(FileAccessMode.Read)
{
WriteableBitmap bitmap = new WriteableBitmap(1,1);
await bitmap.SetSourceAsync(fileStream);
return bitmap.ToBandIcon();
}

关于microsoft-band - 很难创建 Microsoft Band 磁贴图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30268089/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com