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

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

Display an "Information" 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("Information"). name="dontShowAgainName" If provided, a checkbox is added with which further notifications can be turned off. The string is used to lookup and store the setting in the applications config file. The setting is stored in the "Notification Messages" group. name="options" see Options Your program wants to tell the user something. To be used for things like: "Your bookmarks have been rearranged." 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 Information ( QWidget parent, string text, string caption, string dontShowAgainName, uint options ) : void
parent Qyoto.QWidget
text string
caption string
dontShowAgainName string
options uint
Результат void
        public static void Information(QWidget parent, string text, string caption, string dontShowAgainName, uint options)
        {
            staticInterceptor.Invoke("information#$$$$", "information(QWidget*, const QString&, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(string), caption, typeof(string), dontShowAgainName, typeof(uint), options);
        }

Same methods

KMessageBox::Information ( QWidget parent, string text ) : void
KMessageBox::Information ( QWidget parent, string text, string caption ) : void
KMessageBox::Information ( QWidget parent, string text, string caption, string dontShowAgainName ) : void