Kimono.KMessageBox.About C# (CSharp) Method

About() public static method

Display an "About" 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("About \"). name="options" see Options Your program wants to show some general information about the application like the authors's names and email addresses. The default button is "&OK". NOTE: The ok button will always have the i18n'ed text '&OK'.
public static About ( QWidget parent, string text, string caption, uint options ) : void
parent Qyoto.QWidget
text string
caption string
options uint
return void
        public static void About(QWidget parent, string text, string caption, uint options)
        {
            staticInterceptor.Invoke("about#$$$", "about(QWidget*, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), caption, typeof(uint), options);
        }

Same methods

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