Home
last modified time | relevance | path

Searched refs:CollectionChanged (Results 1 – 25 of 165) sorted by relevance

1234567

/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKv3/GKComponents/GKUI/Components/
H A DObservableExtList.cs36 public event NotifyCollectionChangedEventHandler CollectionChanged; event in GKUI.Components.ObservableExtList
104 if (CollectionChanged != null && fUpdateCount == 0) in ChangeReset()
105CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Reset)); in ChangeReset()
110 if (CollectionChanged != null && fUpdateCount == 0) in ChangeAdded()
111CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Add, it… in ChangeAdded()
116 if (CollectionChanged != null && fUpdateCount == 0) in ChangeRemoved()
117CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Remove,… in ChangeRemoved()
122 if (CollectionChanged != null && fUpdateCount == 0) in ChangeMoved()
123CollectionChanged(this, new NotifyCollectionChangedEventArgs(NotifyCollectionChangedAction.Move, i… in ChangeMoved()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/src/System/Collections/ObjectModel/
H A DReadOnlyObservableCollection.cs40 …((INotifyCollectionChanged)Items).CollectionChanged += new NotifyCollectionChangedEventHandler(Han… in ReadOnlyObservableCollection()
59 event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged
61 add { CollectionChanged += value; }
62 remove { CollectionChanged -= value; }
72 protected virtual event NotifyCollectionChangedEventHandler CollectionChanged; event in System.Collections.ObjectModel.ReadOnlyObservableCollection
79 if (CollectionChanged != null) in OnCollectionChanged()
81 CollectionChanged(this, args); in OnCollectionChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/collections/objectmodel/
H A Dreadonlyobservablecollection.cs48 …((INotifyCollectionChanged)Items).CollectionChanged += new NotifyCollectionChangedEventHandler(Han… in ReadOnlyObservableCollection()
67 event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged
69 add { CollectionChanged += value; }
70 remove { CollectionChanged -= value; }
82 protected virtual event NotifyCollectionChangedEventHandler CollectionChanged; event in System.Collections.ObjectModel.ReadOnlyObservableCollection
89 if (CollectionChanged != null) in OnCollectionChanged()
91 CollectionChanged(this, args); in OnCollectionChanged()
H A Dobservablecollection.cs166 public virtual event NotifyCollectionChangedEventHandler CollectionChanged; event in System.Collections.ObjectModel.ObservableCollection
284 if (CollectionChanged != null) in OnCollectionChanged()
288 CollectionChanged(this, e); in OnCollectionChanged()
323 … if ((CollectionChanged != null) && (CollectionChanged.GetInvocationList().Length > 1)) in CheckReentrancy()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/System.ComponentModel/
H A DSortDescriptionCollection.cs48 event NotifyCollectionChangedEventHandler INotifyCollectionChanged.CollectionChanged {
49 add { CollectionChanged += value; }
50 remove { CollectionChanged -= value; }
53 protected event NotifyCollectionChangedEventHandler CollectionChanged; event in System.ComponentModel.SortDescriptionCollection
98 NotifyCollectionChangedEventHandler eh = CollectionChanged; in OnCollectionChanged()
106 NotifyCollectionChangedEventHandler eh = CollectionChanged; in OnCollectionChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.Entity/System/Data/Objects/
H A DObjectViewListener.cs58 cache.EntityDeleted += CollectionChanged; in RegisterCollectionEvents()
62 ((RelatedEnd)_dataSource).AssociationChangedForObjectView += CollectionChanged; in RegisterCollectionEvents()
71 cache.EntityDeleted -= CollectionChanged; in UnregisterCollectionEvents()
75 ((RelatedEnd)_dataSource).AssociationChangedForObjectView -= CollectionChanged; in UnregisterCollectionEvents()
142 private void CollectionChanged(object sender, CollectionChangeEventArgs e) in CollectionChanged() method in System.Data.Objects.ObjectViewListener
147 view.CollectionChanged(sender, e); in CollectionChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/Test/System.Collections.ObjectModel/
H A DObservableCollectionTest.cs50 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Insert()
69 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in RemoveAt()
91 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Move()
118 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Add()
148 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Remove()
178 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Set()
210 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Reentrant()
214 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Reentrant()
246 CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in DoubleEnterReentrant()
251 CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in DoubleEnterReentrant()
[all …]
H A DReadOnlyObservableCollectionTest.cs60 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged += ncceh; in ClassTest()
65 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged -= ncceh; in ClassTest()
84 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged += ncceh; in ClassTest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Collections.ObjectModel/
H A DObservableCollectionTest.cs78 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Insert()
97 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in RemoveAt()
119 col.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Move()
146 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Add()
176 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Remove()
206 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Set()
238 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Reentrant()
242 collection.CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in Reentrant()
274 CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in DoubleEnterReentrant()
279 CollectionChanged += delegate (object sender, NotifyCollectionChangedEventArgs e) { in DoubleEnterReentrant()
[all …]
H A DReadOnlyObservableCollectionTest.cs61 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged += ncceh; in ClassTest()
66 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged -= ncceh; in ClassTest()
85 ((INotifyCollectionChanged)readOnlyCollection).CollectionChanged += ncceh; in ClassTest()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/tests/ObservableCollection/
H A DObservableCollection_ReentrancyTests.cs17 collection.CollectionChanged += (sender, e) => in Reentrancy_SingleListener_DoesNotThrow()
42 collection.CollectionChanged += (sender, e) => { handler1Called = true; }; in Reentrancy_MultipleListeners_Throws()
43 collection.CollectionChanged += (sender, e) => in Reentrancy_MultipleListeners_Throws()
76 collection.CollectionChanged += (sender, e) => { }; in CheckReentrancy()
98 collection.CollectionChanged += (sender, e) => { }; in CheckReentrancy_MultipleListeners_MultipleBlocks()
99 collection.CollectionChanged += (sender, e) => { }; in CheckReentrancy_MultipleListeners_MultipleBlocks()
H A DObservableCollection_MethodsTest.cs500 collection.CollectionChanged += Collection_CollectionChanged; in AddOrInsertItemTest()
532 collection.CollectionChanged -= Collection_CollectionChanged; in AddOrInsertItemTest()
549 collection.CollectionChanged += Collection_CollectionChanged; in ClearTest()
564 collection.CollectionChanged -= Collection_CollectionChanged; in ClearTest()
577 collection.CollectionChanged += Collection_CollectionChanged; in MoveItemTest()
598 collection.CollectionChanged -= Collection_CollectionChanged; in MoveItemTest()
611 collection.CollectionChanged += Collection_CollectionChanged; in ReplaceItemTest()
632 collection.CollectionChanged -= Collection_CollectionChanged; in ReplaceItemTest()
651 collection.CollectionChanged += Collection_CollectionChanged; in RemoveItemTest()
687 collection.CollectionChanged -= Collection_CollectionChanged; in RemoveItemTest()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ObjectModel/tests/ReadOnlyObservableCollection/
H A DReadOnlyObservableCollection_EventsTests.cs289 readOnlyCollectionChanged.CollectionChanged += Collection_CollectionChanged; in AddOrInsertItemTest()
337 readOnlyCollectionChange.CollectionChanged += Collection_CollectionChanged; in ClearTest()
352 readOnlyCollectionChange.CollectionChanged -= Collection_CollectionChanged; in ClearTest()
367 readOnlyCollectionChange.CollectionChanged += Collection_CollectionChanged; in MoveItemTest()
386 readOnlyCollectionChange.CollectionChanged -= Collection_CollectionChanged; in MoveItemTest()
401 readOnlyCollectionChange.CollectionChanged += Collection_CollectionChanged; in ReplaceItemTest()
422 readOnlyCollectionChange.CollectionChanged -= Collection_CollectionChanged; in ReplaceItemTest()
443 readOnlyCollectionChange.CollectionChanged += Collection_CollectionChanged; in RemoveItemTest()
479 readOnlyCollectionChange.CollectionChanged -= Collection_CollectionChanged; in RemoveItemTest()
498 readOnlyCollectionChange.CollectionChanged += Collection_CollectionChanged; in RemoveItemAtTest()
[all …]
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKMap/GKMap.Core/MapObjects/
H A DMapOverlay.cs125 Markers.CollectionChanged += Markers_CollectionChanged; in CreateEvents()
126 Routes.CollectionChanged += Routes_CollectionChanged; in CreateEvents()
127 Polygons.CollectionChanged += Polygons_CollectionChanged; in CreateEvents()
132 Markers.CollectionChanged -= Markers_CollectionChanged; in ClearEvents()
133 Routes.CollectionChanged -= Routes_CollectionChanged; in ClearEvents()
134 Polygons.CollectionChanged -= Polygons_CollectionChanged; in ClearEvents()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data/System/Data/
H A DDataViewListener.cs93 table.Columns.CollectionChanged += handlerCollection; in RegisterMetaDataEvents()
97 table.ChildRelations.CollectionChanged += handlerChildRelation; in RegisterMetaDataEvents()
101 table.ParentRelations.CollectionChanged += handlerParentRelation; in RegisterMetaDataEvents()
116 table.Columns.CollectionChanged -= handlerCollection; in UnregisterMetaDataEvents()
120 table.ChildRelations.CollectionChanged -= handlerChildRelation; in UnregisterMetaDataEvents()
124 table.ParentRelations.CollectionChanged -= handlerParentRelation; in UnregisterMetaDataEvents()
H A DDataViewManager.cs40 … this.dataSet.Tables.CollectionChanged += new CollectionChangeEventHandler(TableCollectionChanged); in DataViewManager()
41 …this.dataSet.Relations.CollectionChanged += new CollectionChangeEventHandler(RelationCollectionCha… in DataViewManager()
67 … this.dataSet.Tables.CollectionChanged -= new CollectionChangeEventHandler(TableCollectionChanged);
68 …this.dataSet.Relations.CollectionChanged -= new CollectionChangeEventHandler(RelationCollectionCha…
72 … this.dataSet.Tables.CollectionChanged += new CollectionChangeEventHandler(TableCollectionChanged);
73 …this.dataSet.Relations.CollectionChanged += new CollectionChangeEventHandler(RelationCollectionCha…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.Common/src/System/Data/
H A DDataViewListener.cs106 table.Columns.CollectionChanged += handlerCollection; in RegisterMetaDataEvents()
110 table.ChildRelations.CollectionChanged += handlerChildRelation; in RegisterMetaDataEvents()
114 table.ParentRelations.CollectionChanged += handlerParentRelation; in RegisterMetaDataEvents()
129 table.Columns.CollectionChanged -= handlerCollection; in UnregisterMetaDataEvents()
133 table.ChildRelations.CollectionChanged -= handlerChildRelation; in UnregisterMetaDataEvents()
137 table.ParentRelations.CollectionChanged -= handlerParentRelation; in UnregisterMetaDataEvents()
H A DDataViewManager.cs33 … _dataSet.Tables.CollectionChanged += new CollectionChangeEventHandler(TableCollectionChanged); in DataViewManager()
34 …_dataSet.Relations.CollectionChanged += new CollectionChangeEventHandler(RelationCollectionChanged… in DataViewManager()
64 … _dataSet.Tables.CollectionChanged -= new CollectionChangeEventHandler(TableCollectionChanged);
65 …_dataSet.Relations.CollectionChanged -= new CollectionChangeEventHandler(RelationCollectionChanged…
69 … _dataSet.Tables.CollectionChanged += new CollectionChangeEventHandler(TableCollectionChanged);
70 …_dataSet.Relations.CollectionChanged += new CollectionChangeEventHandler(RelationCollectionChanged…
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/Test/System.Windows.Forms/
H A DGridTableStylesCollectionTest.cs63 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestMappingNameChanged()
86 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestAdd()
110 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestAddRange()
131 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestRemove()
172 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestIndexContains()
H A DGridColumnStylesCollectionTest.cs65 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestAdd()
116 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestAddRange()
137 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestRemove()
178 sc.CollectionChanged += new CollectionChangeEventHandler (OnCollectionEventHandler); in TestIndexContains()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Windows.Forms/System.Windows.Forms/
H A DBindingsCollection.cs91 if (CollectionChanged!=null) CollectionChanged(this, ccevent); in OnCollectionChanged()
132 public event CollectionChangeEventHandler CollectionChanged; event in System.Windows.Forms.BindingsCollection
H A DAutoCompleteStringCollection.cs45 public event CollectionChangeEventHandler CollectionChanged; event in System.Windows.Forms.AutoCompleteStringCollection
49 if(CollectionChanged == null) in OnCollectionChanged()
52 CollectionChanged (this, e); in OnCollectionChanged()
H A DDataGridViewCellCollection.cs106 public event CollectionChangeEventHandler CollectionChanged; event in System.Windows.Forms.DataGridViewCellCollection
217 if (CollectionChanged != null) { in OnCollectionChanged()
218 CollectionChanged(this, e); in OnCollectionChanged()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/Test/System.ComponentModel/
H A DSortDescriptionCollectionTest.cs48 …((INotifyCollectionChanged)sdc).CollectionChanged += delegate (object sender, NotifyCollectionChan… in SortDescriptionCollectionAddTest()
84 …((INotifyCollectionChanged)sdc).CollectionChanged += delegate (object sender, NotifyCollectionChan… in SortDescriptionCollectionRemoveTest()
105 …((INotifyCollectionChanged)sdc).CollectionChanged += delegate (object sender, NotifyCollectionChan… in SortDescriptionCollectionClearTest()
126 …((INotifyCollectionChanged)sdc).CollectionChanged += delegate (object sender, NotifyCollectionChan… in SortDescriptionCollectionSetTest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/WindowsBase/System.Collections.Specialized/
H A DCollectionChangedEventManager.cs50 inotify.CollectionChanged += OnCollectionChanged; in StartListening()
56 inotify.CollectionChanged -= OnCollectionChanged; in StopListening()

1234567