1 instantiation of ToolboxItemWrapper
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemLoader.cs (1)
90category.Add(new ToolboxItemWrapper(toolName, assembly, bitmap, displayName));
29 references to ToolboxItemWrapper
System.Activities.Presentation (29)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxCategory.cs (13)
22ObservableCollection<ToolboxItemWrapper> tools = new ObservableCollection<ToolboxItemWrapper>(); 45public ToolboxItemWrapper this[int index] 51public ICollection<ToolboxItemWrapper> Tools 56public void Add(ToolboxItemWrapper tool) 65public bool Remove(ToolboxItemWrapper tool) 121this.Add((ToolboxItemWrapper)value); 122return this.tools.IndexOf((ToolboxItemWrapper)value); 136return this.tools.Contains((ToolboxItemWrapper)value); 145return this.tools.IndexOf((ToolboxItemWrapper)value); 154this.tools.Insert(index, (ToolboxItemWrapper)value); 169this.Remove((ToolboxItemWrapper)value); 189this.tools[index] = (ToolboxItemWrapper)value;
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (12)
242var toolWrapper = e.NewValue as ToolboxItemWrapper; 296var items = new List<ToolboxItemWrapper>(); 297foreach (ToolboxItemWrapper toolWrapper in category.Tools) 322foreach (ToolboxItemWrapper tool in args.NewItems) 342ToolboxItemWrapper tool = (ToolboxItemWrapper)sender; 357ToolboxItemWrapper toolWrapper; 374ToolboxItemWrapper toolWrapper; 389bool TryGetSelectedToolboxItem(out ToolboxItem toolboxItem, out ToolboxItemWrapper toolboxItemWrapper) 395ToolboxItemWrapper tool = this.toolsTreeView.SelectedItem as ToolboxItemWrapper;
System.Activities.Presentation\System\Activities\Presentation\Toolbox\TreeViewContainerStyleSelector.cs (3)
126if (item is ToolboxItemWrapper) 145var tool = values[1] as ToolboxItemWrapper;
System.Activities.Presentation\System\Activities\Presentation\Toolbox\TreeViewTemplateSelector.cs (1)
26if (item is ToolboxItemWrapper && null != this.owner.ToolTemplate)