Ejemplo n.º 1
0
        private void OnContentChanged(QueueChangedEventArgs <T> args)
        {
            var handler = this.ContentChanged;

            if (handler != null)
            {
                handler(this, args);
            }
        }
Ejemplo n.º 2
0
 public void OnContentChanged(QueueChangedEventArgs <T> args)
 {
     this.ContentChanged?.Invoke(this, args);
 }