зеркало из https://github.com/DeGsoft/maui-linux.git
24 строки
619 B
C#
24 строки
619 B
C#
using System;
|
|
|
|
namespace Xamarin.Forms.Platform.WinPhone
|
|
{
|
|
public class VisualElementChangedEventArgs : ElementChangedEventArgs<VisualElement>
|
|
{
|
|
public VisualElementChangedEventArgs(VisualElement oldElement, VisualElement newElement) : base(oldElement, newElement)
|
|
{
|
|
}
|
|
}
|
|
|
|
public class ElementChangedEventArgs<TElement> : EventArgs where TElement : Element
|
|
{
|
|
public ElementChangedEventArgs(TElement oldElement, TElement newElement)
|
|
{
|
|
OldElement = oldElement;
|
|
NewElement = newElement;
|
|
}
|
|
|
|
public TElement NewElement { get; private set; }
|
|
|
|
public TElement OldElement { get; private set; }
|
|
}
|
|
} |