Example #1
0
        /// <summary>
        /// Clears the current tags and loads all tag IDs into the combo box
        /// </summary>
        private void LoadTagsList()
        {
            cboTags.Items.Clear();

            List <string> tags = _controller.RetrieveTagIDList();

            foreach (string tag in tags)
            {
                cboTags.Items.Add(tag);
            }
        }