Kimono.KMessageBox.WarningYesNoList C# (CSharp) Method

WarningYesNoList() public static method

Display a "warning" dialog with a listbox to show information to the user 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 questionYesNo. name="caption" Message box title. The application name is added to the title. The default title is i18n("Question"). name="buttonYes" The text for the first button. The default is KStandardGuiItem.Yes(). name="buttonNo" The text for the second button. The default is KStandardGuiItem.No(). name="dontAskAgainName" If provided, a checkbox is added with which further confirmation 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. If dontAskAgainName starts with a ':' then the setting is stored in the global config file. name="options" see Options To be used for questions like "Do you really want to delete these files?" And show the user exactly which files are going to be deleted in case he presses "Yes" The default button is "No". Pressing "Esc" selects "No".
public static WarningYesNoList ( QWidget parent, string text, List strlist, string caption, KGuiItem buttonYes, KGuiItem buttonNo, string dontAskAgainName, uint options ) : int
parent QWidget
text string
strlist List
caption string
buttonYes KGuiItem
buttonNo KGuiItem
dontAskAgainName string
options uint
return int
        public static int WarningYesNoList(QWidget parent, string text, List<string> strlist, string caption, KGuiItem buttonYes, KGuiItem buttonNo, string dontAskAgainName, uint options)
        {
            return (int) staticInterceptor.Invoke("warningYesNoList#$?$##$$", "warningYesNoList(QWidget*, const QString&, const QStringList&, const QString&, const KGuiItem&, const KGuiItem&, const QString&, KMessageBox::Options)", typeof(int), typeof(QWidget), parent, typeof(string), text, typeof(List<string>), strlist, typeof(string), caption, typeof(KGuiItem), buttonYes, typeof(KGuiItem), buttonNo, typeof(string), dontAskAgainName, typeof(uint), options);
        }

Same methods

KMessageBox::WarningYesNoList ( QWidget parent, string text, List strlist ) : int
KMessageBox::WarningYesNoList ( QWidget parent, string text, List strlist, string caption ) : int
KMessageBox::WarningYesNoList ( QWidget parent, string text, List strlist, string caption, KGuiItem buttonYes ) : int
KMessageBox::WarningYesNoList ( QWidget parent, string text, List strlist, string caption, KGuiItem buttonYes, KGuiItem buttonNo ) : int
KMessageBox::WarningYesNoList ( QWidget parent, string text, List strlist, string caption, KGuiItem buttonYes, KGuiItem buttonNo, string dontAskAgainName ) : int