Exemplo n.º 1
0
        public void RaiseIsBusyChanged(bool isBusy)
        {
            var e = new MiscUtil.EventArgs <bool>(isBusy);
            EventHandler <EventArgs <bool> > handler = IsBusyChanged;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Exemplo n.º 2
0
 public void RaiseIsBusyChanged(bool isBusy)
 {
     var e = new MiscUtil.EventArgs<bool>(isBusy);
     EventHandler<EventArgs<bool>> handler = IsBusyChanged;
     if (handler != null) handler(this, e);
 }