[UWP] スレッドにも書いたが、別エントリーでも書いとく。

Dispatcher.RunAsync()を使う。こんな感じ

                await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, () =>
                {
                    button.IsEnabled = true;
                });