在用户点击乐队的磁贴后,我正在尝试与乐队互动。但我无法弄清楚,如何做到这一点。有了这个代码,然后是developers.microsoftband.com上的指南,我什么都没有。当我点击瓷砖时,没有任何反应......
这是一个代码:
using Microsoft.Band;
using Microsoft.Band.Tiles;
using Microsoft.Band.Tiles.Pages;
using (IBandClient bandClient = await BandClientManager.Instance.ConnectAsync(pairedBands[0]))
{
//creating tile here
//...
if (await bandClient.TileManager.AddTileAsync(tile))
{
bandClient.TileManager.TileOpened += (sender, ev) =>
{
System.Diagnostics.Debug.WriteLine("Opened");
System.Diagnostics.Debug.WriteLine(ev.TileEvent.TileId);
};
await bandClient.TileManager.StartReadingsAsync();
}
}