Beyond_Beyaan.Screens.FleetView.MoveWindow C# (CSharp) Метод

MoveWindow() публичный Метод

public MoveWindow ( ) : void
Результат void
        public override void MoveWindow()
        {
            base.MoveWindow();

            _empireBackground.MoveTo(_xPos + 10, _yPos + 10);
            _empireNameLabel.MoveTo(_xPos + 150 - (int)(_empireNameLabel.GetWidth() / 2), _yPos + 30 - (int)(_empireNameLabel.GetHeight() / 2));
            _previousFleet.MoveTo(_xPos + 18, _yPos + 22);
            _nextFleet.MoveTo(_xPos + 266, _yPos + 22);

            for (int i = 0; i < _shipBackground.Length; i++)
            {
                _shipBackground[i].MoveTo(_xPos + 10, _yPos + 55 + (i * 55));
                _shipLabels[i].MoveTo(_xPos + 15, _yPos + 65 + (i * 55));
                _shipSliders[i].MoveTo(_xPos + 15, _yPos + 85 + (i * 55));
            }
        }