DarkUI.Net5/DarkUI/Collections/ObservableListModified.cs
Robin 217058af72 Created ObservableList
Class used for notifying when an item is added/removed from a list
without raising events for things like index changes.
2015-09-18 12:38:18 +01:00

16 lines
306 B
C#

using System;
using System.Collections.Generic;
namespace DarkUI
{
public class ObservableListModified<T> : EventArgs
{
public IEnumerable<T> Items { get; private set; }
public ObservableListModified(IEnumerable<T> items)
{
Items = items;
}
}
}