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

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

Like messageBox Only for message boxes of type Information, Sorry or Error. This function will return immediately, the messagebox will be shown once the application enters an event loop and no other messagebox is being shown. Note that if the parent gets deleted, the messagebox will not be shown.
public static QueuedMessageBox ( QWidget parent, KMessageBox type, string text, string caption, uint options ) : void
parent QWidget
type KMessageBox
text string
caption string
options uint
Результат void
        public static void QueuedMessageBox(QWidget parent, KMessageBox.DialogType type, string text, string caption, uint options)
        {
            staticInterceptor.Invoke("queuedMessageBox#$$$$", "queuedMessageBox(QWidget*, KMessageBox::DialogType, const QString&, const QString&, KMessageBox::Options)", typeof(void), typeof(QWidget), parent, typeof(KMessageBox.DialogType), type, typeof(string), text, typeof(string), caption, typeof(uint), options);
        }

Same methods

KMessageBox::QueuedMessageBox ( QWidget parent, KMessageBox type, string text ) : void
KMessageBox::QueuedMessageBox ( QWidget parent, KMessageBox type, string text, string caption ) : void