Example #1
0
 private void RaiseDialogShown(DialogShownEventArgs arguments)
 {
     if (null != DialogShown)
     {
         DialogShown(this, arguments);
     }
 }
Example #2
0
 private void RaiseDialogShown(DialogShownEventArgs arguments)
 {
     if (null != DialogShown)
         DialogShown(this, arguments);
 }
Example #3
0
 private void RaiseDialogShown(DialogType type, bool suppressed, bool modal, DialogResult result, IEnumerable<KeyValuePair<string, object>> arguments)
 {
     DialogShownEventArgs args = new DialogShownEventArgs(type, suppressed, modal, result, arguments);
     RaiseDialogShown(args);
 }
Example #4
0
        private void RaiseDialogShown(DialogType type, bool suppressed, bool modal, DialogResult result, IEnumerable <KeyValuePair <string, object> > arguments)
        {
            DialogShownEventArgs args = new DialogShownEventArgs(type, suppressed, modal, result, arguments);

            RaiseDialogShown(args);
        }