maui-linux/Xamarin.Forms.Core/ChildCollectionChangedEvent...

15 строки
320 B
C#

using System;
using System.Collections.Specialized;
namespace Xamarin.Forms
{
internal class ChildCollectionChangedEventArgs : EventArgs
{
public ChildCollectionChangedEventArgs(NotifyCollectionChangedEventArgs args)
{
Args = args;
}
public NotifyCollectionChangedEventArgs Args { get; private set; }
}
}