mirror of
https://github.com/colhountech/DarkUI.Net5.git
synced 2025-07-02 23:29:28 +03:00
Class used for notifying when an item is added/removed from a list without raising events for things like index changes.
16 lines
306 B
C#
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;
|
|
}
|
|
}
|
|
}
|