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

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

Display an "Error" dialog. 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="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 Error ( QWidget parent, string text, string caption, uint options ) : void
parent Qyoto.QWidget
text string
caption string
options uint
Результат void
        public static void Error(QWidget parent, string text, string caption, uint options)
        {
            staticInterceptor.Invoke("error#$$$", "error(QWidget*, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), caption, typeof(uint), options);
        }

Same methods

KMessageBox::Error ( QWidget parent, string text ) : void
KMessageBox::Error ( QWidget parent, string text, string caption ) : void