public ClipboardToolboxNode(string text)
            {
                Text = text;

                ItemFilters.Add(filterAtt);
                Category = category;
                Icon     = icon;
            }
 public TextToolboxNode(string text)
 {
     Text = text;
     ItemFilters.Add(new ToolboxItemFilterAttribute("text/plain", ToolboxItemFilterType.Allow));
 }
Exemple #3
0
 public TemplateToolboxNode(CodeTemplate template)
 {
     this.Template = template;
     ItemFilters.Add(new ToolboxItemFilterAttribute("text/plain", ToolboxItemFilterType.Allow));
 }
Exemple #4
0
 public SnippetToolboxNode(ExpansionTemplate template)
 {
     this.Template = template;
     ItemFilters.Add(new ToolboxItemFilterAttribute("text/plain", ToolboxItemFilterType.Allow));
 }