Esempio n. 1
0
        private void LoadAllTags()
        {
            lstTags.Items.Clear();

            Dictionary <string, bool> tagsAssigned = _controller.GetAllTagsAssigned();

            foreach (KeyValuePair <string, bool> entry in tagsAssigned)
            {
                lstTags.Items.Add(entry.Key + "\t" + (entry.Value ? "\u2713" : "X"));
            }
        }