我想在Microsoft Band上創建一個簡單的應用程序,該應用程序在單擊按鈕時更新TextBlock。使用新的Microsoft Band SDK更新TextBlockData
我知道如何獲得樂隊上的按鈕的觸發事件。但是如果觸發按鈕,我無法設置TextBlock。
bandClient.TileManager.TileButtonPressed += (s, args) =>
{
buttonPressedCount++;
((TextBlockData)page3.Values[2]).Text = buttonPressedCount.ToString();
bandClient.TileManager.SetPagesAsync(args.TileEvent.TileId, page, page2,page3);
};
我試着改變頁面並調用SetPAgeAsync,但是這不能正常工作。
您的幫助表示讚賞。
你好。我有問題捕獲按鈕觸發的事件。你似乎有它的工作。你介意檢查我的問題:http://stackoverflow.com/questions/35147802/ms-band-sdk-button-pressed-event-handler-not-being-called – doktorg