Exemplo n.º 1
0
 public void Dispose()
 {
     if (this.parent != null)
     {
         this.parent.EndIgnoreEvents();
         this.parent = null;
     }
     GC.SuppressFinalize(this);
 }
Exemplo n.º 2
0
 public void Dispose()
 {
     if (this.parent != null)
     {
         this.parent.EndIgnoreEvents();
         this.parent = null;
     }
     GC.SuppressFinalize(this);
 }
Exemplo n.º 3
0
 public IgnoreViewEventsHelper(EnumerableCollectionView parent)
 {
     this.parent = parent;
     this.parent.BeginIgnoreEvents();
 }
Exemplo n.º 4
0
 public IgnoreViewEventsHelper(EnumerableCollectionView parent)
 {
     this.parent = parent;
     this.parent.BeginIgnoreEvents();
 }
Exemplo n.º 5
0
        private void EndIgnoreEvents()
        {
            EnumerableCollectionView enumerableCollectionView = this;

            enumerableCollectionView.ignoreEventsLevel = enumerableCollectionView.ignoreEventsLevel - 1;
        }
Exemplo n.º 6
0
        private void BeginIgnoreEvents()
        {
            EnumerableCollectionView enumerableCollectionView = this;

            enumerableCollectionView.ignoreEventsLevel = enumerableCollectionView.ignoreEventsLevel + 1;
        }