14 строки
194 B
C#
14 строки
194 B
C#
|
using System;
|
||
|
|
||
|
namespace Xamarin.Forms.Platform.Tizen
|
||
|
{
|
||
|
[Flags]
|
||
|
public enum VisualElementRendererFlags : byte
|
||
|
{
|
||
|
None = 0,
|
||
|
Disposed = 1,
|
||
|
NeedsLayout = 2,
|
||
|
NeedsTransformation = 4,
|
||
|
}
|
||
|
}
|