BattleShip.GameBoard.InitializeSize C# (CSharp) 메소드

InitializeSize() 개인적인 메소드

Calcul the size in pixel by the rapport in the number of case and the size
private InitializeSize ( ) : void
리턴 void
        private void InitializeSize()
        {
            this.Size = new Size(LINES * SIZE + SIZE, COLUMNS * SIZE + LblPlayer.Height + SIZE);
        }