Exemple #1
0
        public TagEditor(K12.Data.TagCategory category)
        {
            InitializeComponent();

            _mode                 = ManageMode.Insert;
            _current_tag          = new JHTagConfigRecord();
            _current_tag.Category = category.ToString();
        }
Exemple #2
0
        public static DialogResult InsertTag(K12.Data.TagCategory category)
        {
            TagEditor editor = new TagEditor(category);

            return(editor.ShowDialog());
        }