Beyond_Beyaan.BBComboBox.RefreshLabels C# (CSharp) Method

RefreshLabels() private method

private RefreshLabels ( ) : void
return void
        private void RefreshLabels()
        {
            for (int i = 1; i < _buttons.Count; i++)
            {
                _buttons[i].SetText(_items[_scrollBar.TopIndex + (i - 1)]);
            }
        }