Normal
That was definively what I was looking for. Adding this code in the process plugin I'm able to show notifications in the current window. GUIDialogNotify dlgNotify = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY); if (null != dlgNotify) { dlgNotify.SetHeading("HEADING"); dlgNotify.SetText("TEXT"); dlgNotify.SetImage(@"Warning_Green.png"); dlgNotify.SetImageDimensions(new System.Drawing.Size(150, 150), true, true); dlgNotify.DoModal(GUIWindowManager.ActiveWindow); }Thanks.
That was definively what I was looking for. Adding this code in the process plugin I'm able to show notifications in the current window.
GUIDialogNotify dlgNotify = (GUIDialogNotify)GUIWindowManager.GetWindow((int)GUIWindow.Window.WINDOW_DIALOG_NOTIFY);
if (null != dlgNotify)
{
dlgNotify.SetHeading("HEADING");
dlgNotify.SetText("TEXT");
dlgNotify.SetImage(@"Warning_Green.png");
dlgNotify.SetImageDimensions(new System.Drawing.Size(150, 150), true, true);
dlgNotify.DoModal(GUIWindowManager.ActiveWindow);
}
Thanks.