зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
383 B
C#
13 строки
383 B
C#
|
using System;
|
||
|
|
||
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
internal interface IElement
|
||
|
{
|
||
|
Element Parent { get; set; }
|
||
|
|
||
|
//Use these 2 instead of an event to avoid cloning way too much multicastdelegates on mono
|
||
|
void AddResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged);
|
||
|
void RemoveResourcesChangedListener(Action<object, ResourcesChangedEventArgs> onchanged);
|
||
|
}
|
||
|
}
|