Inheritance: System.Windows.Forms.Form
        public static string Show(string messageText)
        {
            var helpMessage = new HelpMessageBox();

            helpMessage.setMessage(messageText);
            helpMessage.addIconImage(enumMessageIcon.Information);
            helpMessage.addButton(enumMessageButton.OK);
            helpMessage.ShowDialog();
            return(helpMessage.edtMessageText.Text);
        }
        public static string Show(string messageText,
                                  string messageTitle,
                                  enumMessageIcon messageIcon,
                                  enumMessageButton messageButton, Point location)
        {
            var helpMessage = new HelpMessageBox();

            helpMessage.setMessage(messageText);
            helpMessage.Text = messageTitle;
            helpMessage.addIconImage(messageIcon);
            helpMessage.addButton(messageButton);
            helpMessage._startingLocation = location;
            helpMessage.ShowDialog();
            return(helpMessage.edtMessageText.Text);
        }
 public static string Show(string messageText, string messageTitle)
 {
     var helpMessage = new HelpMessageBox();
     helpMessage.Text = messageTitle;
     helpMessage.setMessage(messageText);
     helpMessage.addIconImage(enumMessageIcon.Information);
     helpMessage.addButton(enumMessageButton.OK);
     helpMessage.ShowDialog();
     return helpMessage.edtMessageText.Text;
 }
 public static string Show(string messageText,
     string messageTitle,
     enumMessageIcon messageIcon,
     enumMessageButton messageButton, Point location)
 {
     var helpMessage = new HelpMessageBox();
     helpMessage.setMessage(messageText);
     helpMessage.Text = messageTitle;
     helpMessage.addIconImage(messageIcon);
     helpMessage.addButton(messageButton);
     helpMessage._startingLocation = location;
     helpMessage.ShowDialog();
     return helpMessage.edtMessageText.Text;
 }