maui-linux/Xamarin.Forms.Core/IViewContainer.cs

9 строки
157 B
C#

using System.Collections.Generic;
namespace Xamarin.Forms
{
public interface IViewContainer<T> where T : VisualElement
{
IList<T> Children { get; }
}
}