Beispiel #1
0
        public static void RaiseUINotification(object obj, Dictionary <string, string> parameters)
        {
            NotifyUIEventArgs nuiea = new NotifyUIEventArgs();

            nuiea.messageCollection = parameters;
            UIEventReference(obj, nuiea);
        }
Beispiel #2
0
        public static void RaiseUINotification(object obj, string controlName, string message)
        {
            NotifyUIEventArgs nuiea = new NotifyUIEventArgs();

            nuiea.name    = controlName;
            nuiea.message = message;
            UIEventReference(obj, nuiea);
        }