| 34 | } |
| 35 | |
| 36 | DialogResult MessageBox::Show(Window* parent, const StringView& text, const StringView& caption, MessageBoxButtons buttons, MessageBoxIcon icon) |
| 37 | { |
| 38 | return (DialogResult)CUWPPlatform->ShowMessageDialog(parent ? parent->GetImpl() : nullptr, String(text).GetText(), String(caption).GetText(), (UWPPlatformImpl::MessageBoxButtons)buttons, (UWPPlatformImpl::MessageBoxIcon)icon); |
| 39 | } |
| 40 | |
| 41 | bool UWPPlatform::Init() |
| 42 | { |
nothing calls this directly
no test coverage detected