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

21 строка
672 B
C#
Исходник Обычный вид История

using System;
using Xamarin.Forms.Internals;
using static Xamarin.Forms.VisualElement;
2016-03-22 23:02:25 +03:00
namespace Xamarin.Forms
{
public interface IVisualElementController : IElementController
{
void NativeSizeChanged();
void InvalidateMeasure(InvalidationTrigger trigger);
bool Batched { get; }
bool DisableLayout { get; set; }
EffectiveFlowDirection EffectiveFlowDirection { get; }
bool IsInNativeLayout { get; set; }
bool IsNativeStateConsistent { get; set; }
bool IsPlatformEnabled { get; set; }
NavigationProxy NavigationProxy { get; }
event EventHandler<EventArg<VisualElement>> BatchCommitted;
event EventHandler<FocusRequestArgs> FocusChangeRequested;
2016-03-22 23:02:25 +03:00
}
}