public static Result Show(string text, string caption, Type messageBoxType, NativeWindow childWindow)
 {
     return(m_platformWrapper.Show(text, caption, messageBoxType, childWindow));
 }
Exemplo n.º 2
0
 public static Result Show(string text, string caption, Type messageBoxType, bool useWindowHandle = true)
 {
     return(m_platformWrapper.Show(text, caption, messageBoxType, useWindowHandle));
 }