Windows :: UI :: Popups :: MessageDialog停止工作

时间:2017-05-05 08:26:29

标签: uwp messagebox

我有这个代码,它运行良好:

if(auto dialog=ref new Windows::UI::Popups::MessageDialog(ref new Platform::String(L"title"), ref new Platform::String(L"error"))) 
      {
         //dialog->Commands->Append(ref new Windows::UI::Popups::UICommand("OK", ref new Windows::UI::Popups::UICommandInvokedHandler(this, &Exiter::onOK)));
         dialog->ShowAsync();
      }

但是自从我将Windows更新到最新的Creators Update,以及我的Visual Studio 2015到2017以及最新的Windows UWP SDK之后,这段代码就不再适用了。没有任何反应,不再显示消息框。 我是做错了还是最新的Windows UWP SDK中有错误?

1 个答案:

答案 0 :(得分:0)

更新VS 2017后,使用最新的10.0.15063.0 SDK,问题就消失了。