Habanero.Faces.Base.DateRangeComboBoxManager.BuildComboBoxList C# (CSharp) Method

BuildComboBoxList() private method

Populates the ComboBox with the current set of date options
private BuildComboBoxList ( ) : void
return void
        private void BuildComboBoxList()
        {
            _comboBox.Items.Clear();
            _comboBox.Items.Add("(Date Ranges)");
            _comboBox.Text = _comboBox.Items[0].ToString();
            foreach (DateRangeOptions option in _optionsToDisplay)
            {
                _comboBox.Items.Add(_dateRangePairs[option]);
            }
        }