21 строка
386 B
C#
21 строка
386 B
C#
|
using System;
|
||
|
|
||
|
namespace Xamarin.Forms
|
||
|
{
|
||
|
internal static class LayoutAlignmentExtensions
|
||
|
{
|
||
|
public static double ToDouble(this LayoutAlignment align)
|
||
|
{
|
||
|
switch (align)
|
||
|
{
|
||
|
case LayoutAlignment.Start:
|
||
|
return 0;
|
||
|
case LayoutAlignment.Center:
|
||
|
return 0.5;
|
||
|
case LayoutAlignment.End:
|
||
|
return 1;
|
||
|
}
|
||
|
throw new ArgumentOutOfRangeException("align");
|
||
|
}
|
||
|
}
|
||
|
}
|