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

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

Display an "Information" dialog with a listbox. 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="strlist" List of strings to be written in the listbox. If the list is empty, it doesn't show any listbox, working as information. 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: "The following 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 InformationList ( QWidget parent, string text, List strlist, string caption, string dontShowAgainName, uint options ) : void
parent Qyoto.QWidget
text string
strlist List
caption string
dontShowAgainName string
options uint
Результат void
        public static void InformationList(QWidget parent, string text, List<string> strlist, string caption, string dontShowAgainName, uint options)
        {
            staticInterceptor.Invoke("informationList#$?$$$", "informationList(QWidget*, const QString&, const QStringList&, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(string), text, typeof(List<string>), strlist, typeof(string), caption, typeof(string), dontShowAgainName, typeof(uint), options);
        }

Same methods

KMessageBox::InformationList ( QWidget parent, string text, List strlist ) : void
KMessageBox::InformationList ( QWidget parent, string text, List strlist, string caption ) : void
KMessageBox::InformationList ( QWidget parent, string text, List strlist, string caption, string dontShowAgainName ) : void