| 412 | } |
| 413 | |
| 414 | UWPPlatformImpl::DialogResult PlatformImpl::ShowMessageDialog(UWPWindowImpl* window, const wchar_t* text, const wchar_t* caption, MessageBoxButtons buttons, MessageBoxIcon icon) |
| 415 | { |
| 416 | Platform::String^ content = ref new Platform::String(text); |
| 417 | Platform::String^ title = ref new Platform::String(caption); |
| 418 | Windows::UI::Popups::MessageDialog^ msg = ref new Windows::UI::Popups::MessageDialog(content, title); |
| 419 | |
| 420 | // TODO: implement buttons |
| 421 | // TODO: gather result |
| 422 | |
| 423 | msg->ShowAsync(); |
| 424 | |
| 425 | return DialogResult::OK; |
| 426 | } |
| 427 | |
| 428 | #endif |