aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs49
1 files changed, 49 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs
new file mode 100644
index 000000000..e16393e83
--- /dev/null
+++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Logging/ControlledObservableCollection.cs
@@ -0,0 +1,49 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.Collections.Specialized;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.MachineStudio.Logging
+{
+ public class ControlledObservableCollection<T> : ObservableCollection<T>
+ {
+ public bool DisableNotification { get; set; }
+
+ public ControlledObservableCollection() : base()
+ {
+
+ }
+
+ public ControlledObservableCollection(IEnumerable<T> collection) : base(collection)
+ {
+
+ }
+
+ protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
+ {
+ if (!DisableNotification)
+ {
+ base.OnCollectionChanged(e);
+ }
+ }
+
+ public void AddRange(IEnumerable<T> collection)
+ {
+ foreach (var item in collection)
+ {
+ Add(item);
+ }
+ }
+
+ public void InsertRange(int index, IEnumerable<T> collection)
+ {
+ foreach (var item in collection)
+ {
+ Insert(index, item);
+ }
+ }
+ }
+}