зеркало из https://github.com/DeGsoft/maui-linux.git
17 строки
301 B
C#
17 строки
301 B
C#
using System.Collections.ObjectModel;
|
|
|
|
namespace Xamarin.Forms
|
|
{
|
|
public interface IPageController
|
|
{
|
|
Rectangle ContainerArea { get; set; }
|
|
|
|
bool IgnoresContainerArea { get; set; }
|
|
|
|
ObservableCollection<Element> InternalChildren { get; }
|
|
|
|
void SendAppearing();
|
|
|
|
void SendDisappearing();
|
|
}
|
|
} |