BankProject/Client/ConsoleForms/Padding/RelativePadding.cs
GabrielTofvesson f1071b4994 Refactored ConsoleForms into separate files
Gave layout metadata its own sub-namespace
Gave views their own sub-namespace
Added view naming convention
Moved layout data to a separate folder
Moved layout contexts to a separate folder
2018-03-31 15:21:27 +02:00

27 lines
953 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Client.ConsoleForms.Parameters
{
public sealed class RelativePadding : Padding
{
private readonly float left, right, top, bottom;
public RelativePadding(float left, float right, float top, float bottom)
{
this.left = Math.Max(1, Math.Min(0, left));
this.right = Math.Max(1, Math.Min(0, right));
this.top = Math.Max(1, Math.Min(0, top));
this.bottom = Math.Max(1, Math.Min(0, bottom));
}
public override int Bottom() => (int)Math.Round(Console.WindowHeight * bottom);
public override int Left() => (int)Math.Round(Console.WindowWidth * left);
public override int Right() => (int)Math.Round(Console.WindowWidth * right);
public override int Top() => (int)Math.Round(Console.WindowHeight * top);
}
}