Kimono.KMessageBox.ErrorList C# (CSharp) Method

ErrorList() public static method

Display an "Error" dialog with a listbox. name="parent" If parent is 0, then the message box becomes an application-global modal dialog box. If parent is a widget, the message box becomes modal relative to parent. name="text" Message string. name="strlist" List of strings to be written in the listbox. If the list is empty, it doesn't show any listbox, working as error(). name="caption" Message box title. The application name is added to the title. The default title is i18n("Error"). name="options" see Options Your program messed up and now it's time to inform the user. To be used for important things like "Sorry, I deleted your hard disk." If your program detects the action specified by the user is somehow not allowed, this should never be reported with error(). Use sorry() instead to explain to the user that this action is not allowed. The default button is "&OK". Pressing "Esc" selects the OK-button. NOTE: The OK button will always have the i18n'ed text '&OK'.
public static ErrorList ( QWidget parent, string text, List strlist, string caption, uint options ) : void
parent Qyoto.QWidget
text string
strlist List
caption string
options uint
return void
        public static void ErrorList(QWidget parent, string text, List<string> strlist, string caption, uint options)
        {
            staticInterceptor.Invoke("errorList#$?$$", "errorList(QWidget*, const QString&, const QStringList&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(List<string>), strlist, typeof(string), caption, typeof(uint), options);
        }

Same methods

KMessageBox::ErrorList ( QWidget parent, string text, List strlist ) : void
KMessageBox::ErrorList ( QWidget parent, string text, List strlist, string caption ) : void