Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ReadOnlyObservableCollection.cs
Go to the documentation of this file.
6
8
11[DebuggerDisplay("Count = {Count}")]
12[TypeForwardedFrom("WindowsBase, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
14{
15 event NotifyCollectionChangedEventHandler? INotifyCollectionChanged.CollectionChanged
16 {
17 add
18 {
20 }
21 remove
22 {
24 }
25 }
26
28
29 event PropertyChangedEventHandler? INotifyPropertyChanged.PropertyChanged
30 {
31 add
32 {
34 }
35 remove
36 {
38 }
39 }
40
41 protected virtual event PropertyChangedEventHandler? PropertyChanged;
42
49
51 {
52 this.CollectionChanged?.Invoke(this, args);
53 }
54
56 {
57 this.PropertyChanged?.Invoke(this, args);
58 }
59
61 {
63 }
64
65 private void HandlePropertyChanged(object sender, PropertyChangedEventArgs e)
66 {
68 }
69}
NotifyCollectionChangedEventHandler? INotifyCollectionChanged. CollectionChanged
virtual ? NotifyCollectionChangedEventHandler CollectionChanged
PropertyChangedEventHandler? INotifyPropertyChanged. PropertyChanged
void HandleCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
void HandlePropertyChanged(object sender, PropertyChangedEventArgs e)
virtual void OnCollectionChanged(NotifyCollectionChangedEventArgs args)
delegate void NotifyCollectionChangedEventHandler(object? sender, NotifyCollectionChangedEventArgs e)