Exemplo n.º 1
0
        public static int GetOrder(Layoutable layoutable)
        {
            if (layoutable is null)
            {
                throw new ArgumentNullException(nameof(layoutable));
            }

            return(layoutable.GetValue(OrderProperty));
        }
Exemplo n.º 2
0
        public static AlignItems?GetAlignSelf(Layoutable layoutable)
        {
            if (layoutable is null)
            {
                throw new ArgumentNullException(nameof(layoutable));
            }

            return(layoutable.GetValue(AlignSelfProperty));
        }