Beyond_Beyaan.BBComboBox.MoveTo C# (CSharp) Метод

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

public MoveTo ( int x, int y ) : void
x int
y int
Результат void
        public void MoveTo(int x, int y)
        {
            _xPos = x;
            _yPos = y;

            for (int i = 0; i < _buttons.Count; i++)
            {
                _buttons[i].MoveTo(x, y + (i * _height));
            }

            _scrollBar.MoveTo(_xPos + _width, _yPos + _height);
            _dropBackground.MoveTo(_xPos, _yPos);
        }