Kimono.KMessageBox.DetailedError C# (CSharp) Метод

DetailedError() публичный статический Метод

Displays an "Error" dialog with a "Details >>" button. 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="details" Detailed message string. 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." The details message can conatin additional information about the problem and can be shown on request to advanced/interested users. 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 DetailedError ( QWidget parent, string text, string details, string caption, uint options ) : void
parent Qyoto.QWidget
text string
details string
caption string
options uint
Результат void
        public static void DetailedError(QWidget parent, string text, string details, string caption, uint options)
        {
            staticInterceptor.Invoke("detailedError#$$$$", "detailedError(QWidget*, const QString&, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), details, typeof(string), caption, typeof(uint), options);
        }

Same methods

KMessageBox::DetailedError ( QWidget parent, string text, string details ) : void
KMessageBox::DetailedError ( QWidget parent, string text, string details, string caption ) : void