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