public static DialogResult showPopupWarning(IWin32Window host)
        {
            PopupWarning sPopup = new PopupWarning();

            //
            sPopup.ShowIcon      = false;
            sPopup.ShowInTaskbar = false;
            sPopup.HelpButton    = false;
            sPopup.MinimizeBox   = false;
            sPopup.MaximizeBox   = false;
            sPopup.MaximumSize   = sPopup.MinimumSize = sPopup.Size;
            sPopup.StartPosition = FormStartPosition.CenterScreen;
            //
            DialogResult dl = sPopup.ShowDialog(host);

            //
            sPopup.Dispose();
            //
            return(dl);
        }
 public static DialogResult showPopupWarning(IWin32Window host)
 {
     PopupWarning sPopup = new PopupWarning();
     //
     sPopup.ShowIcon = false;
     sPopup.ShowInTaskbar = false;
     sPopup.HelpButton = false;
     sPopup.MinimizeBox = false;
     sPopup.MaximizeBox = false;
     sPopup.MaximumSize = sPopup.MinimumSize = sPopup.Size;
     sPopup.StartPosition = FormStartPosition.CenterScreen;
     //
     DialogResult dl = sPopup.ShowDialog(host);
     //
     sPopup.Dispose();
     //
     return dl;
 }