LongoMatch.Gui.Component.StringTaggerWidget.PopulateGui C# (CSharp) Method

PopulateGui() private method

private PopulateGui ( ) : void
return void
        private void PopulateGui()
        {
            Title = subcategory.Name;
            dict = new Dictionary<StringTag, CheckButton>();
            foreach (string tag in subcategory)
                AddTagWidget(new StringTag{Value=tag, SubCategory=subcategory},
                             !subcategory.AllowMultiple);
        }