Kimono.KMessageBox.Sorry C# (CSharp) Method

Sorry() public static method

Display an "Sorry" 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("Sorry"). name="options" see OptionsType Either your program messed up and asks for understanding or your user did something stupid. To be used for small problems like "Sorry, I can't find the file you specified." 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 Sorry ( QWidget parent, string text, string caption, uint options ) : void
parent QWidget
text string
caption string
options uint
return void
        public static void Sorry(QWidget parent, string text, string caption, uint options)
        {
            staticInterceptor.Invoke("sorry#$$$", "sorry(QWidget*, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), caption, typeof(uint), options);
        }

Same methods

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