1 type derived from ToolboxItem
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WinOEToolBoxItem.cs (1)
16
public class ActivityToolboxItem :
ToolboxItem
1 instantiation of ToolboxItem
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
232
instance = new
ToolboxItem
(discoveredToolType);
59 references to ToolboxItem
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (6)
38
typeof(
ToolboxItem
),
150
public
ToolboxItem
SelectedTool
152
get { return (
ToolboxItem
)GetValue(SelectedToolProperty); }
356
ToolboxItem
tool;
373
ToolboxItem
tool;
389
bool TryGetSelectedToolboxItem(out
ToolboxItem
toolboxItem, out ToolboxItemWrapper toolboxItemWrapper)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (4)
36
ToolboxItem
toolboxItem;
80
internal
ToolboxItem
ToolboxItem
224
ToolboxItem
instance = null;
228
Activator.CreateInstance(toolboxItemAttributes[0].ToolboxItemType) as
ToolboxItem
;
System.Drawing (39)
commonui\System\Drawing\Design\IToolboxService.cs (12)
54
void AddLinkedToolboxItem(
ToolboxItem
toolboxItem, IDesignerHost host);
62
void AddLinkedToolboxItem(
ToolboxItem
toolboxItem, string category, IDesignerHost host);
70
void AddToolboxItem(
ToolboxItem
toolboxItem);
76
void AddToolboxItem(
ToolboxItem
toolboxItem, string category);
82
ToolboxItem
DeserializeToolboxItem(object serializedObject);
88
ToolboxItem
DeserializeToolboxItem(object serializedObject, IDesignerHost host);
94
ToolboxItem
GetSelectedToolboxItem();
100
ToolboxItem
GetSelectedToolboxItem(IDesignerHost host);
176
void RemoveToolboxItem(
ToolboxItem
toolboxItem);
182
void RemoveToolboxItem(
ToolboxItem
toolboxItem, string category);
195
object SerializeToolboxItem(
ToolboxItem
toolboxItem);
209
void SetSelectedToolboxItem(
ToolboxItem
toolboxItem);
commonui\System\Drawing\Design\IToolboxUser.cs (2)
29
bool GetToolSupported(
ToolboxItem
tool);
35
void ToolPicked(
ToolboxItem
tool);
commonui\System\Drawing\Design\ToolboxComponentsCreatedEventHandler.cs (1)
13
/// <para>Represents the method that will handle the <see cref='System.Drawing.Design.
ToolboxItem
.ComponentsCreated'/> event.</para>
commonui\System\Drawing\Design\ToolboxComponentsCreatingEventHandler.cs (1)
13
/// <para>Represents the method that will handle the <see cref='System.Drawing.Design.
ToolboxItem
.ComponentsCreating'/> event.</para>
commonui\System\Drawing\Design\ToolboxItem.cs (11)
81
/// Initializes a new instance of the <see cref='System.Drawing.Design.
ToolboxItem
'/>
152
/// Gets or sets the company name for this <see cref='System.Drawing.Design.
ToolboxItem
'/>.
190
/// Gets or sets the display name for this <see cref='System.Drawing.Design.
ToolboxItem
'/>.
422
/// <para>Loads the state of this <see cref='System.Drawing.Design.
ToolboxItem
'/>
496
ToolboxItem
otherItem = (
ToolboxItem
)obj;
798
/// will be called when this <see cref='System.Drawing.Design.
ToolboxItem
'/> creates a component.</para>
810
/// will be called before this <see cref='System.Drawing.Design.
ToolboxItem
'/> creates a component.</para>
821
/// <para>Saves the state of this <see cref='System.Drawing.Design.
ToolboxItem
'/> to
948
private
ToolboxItem
_item;
949
internal LockableDictionary(
ToolboxItem
item, int capacity) : base(capacity)
commonui\System\Drawing\Design\ToolboxItemCollection.cs (11)
15
/// A collection that stores <see cref='System.Drawing.Design.
ToolboxItem
'/> objects.
34
/// Initializes a new instance of <see cref='System.Drawing.Design.ToolboxItemCollection'/> containing any array of <see cref='System.Drawing.Design.
ToolboxItem
'/> objects.
37
public ToolboxItemCollection(
ToolboxItem
[] value) {
43
/// <para>Represents the entry at the specified index of the <see cref='System.Drawing.Design.
ToolboxItem
'/>.</para>
45
public
ToolboxItem
this[int index] {
47
return ((
ToolboxItem
)(InnerList[index]));
54
/// <see cref='System.Drawing.Design.ToolboxItemCollection'/> contains the specified <see cref='System.Drawing.Design.
ToolboxItem
'/>.</para>
56
public bool Contains(
ToolboxItem
value) {
65
public void CopyTo(
ToolboxItem
[] array, int index) {
71
/// <para>Returns the index of a <see cref='System.Drawing.Design.
ToolboxItem
'/> in
74
public int IndexOf(
ToolboxItem
value) {
commonui\System\Drawing\Design\ToolboxItemCreatorCallback.cs (1)
16
public delegate
ToolboxItem
ToolboxItemCreatorCallback(object serializedObject, string format);
System.Workflow.ComponentModel (10)
AuthoringOM\Design\ActivityDesigner.cs (2)
2426
bool IToolboxUser.GetToolSupported(
ToolboxItem
toolboxItem)
2514
void IToolboxUser.ToolPicked(
ToolboxItem
toolboxItem)
AuthoringOM\Design\CompositeActivityDesigner.cs (3)
622
ToolboxItem
toolBoxItem = ts.DeserializeToolboxItem(dataObj, designerHost);
636
private static ICollection GetActivitiesFromToolboxItem(IServiceProvider serviceProvider, bool addAssemblyReference, IDesignerHost designerHost, ICollection activities,
ToolboxItem
toolBoxItem)
654
internal static Activity[] DeserializeActivitiesFromToolboxItem(IServiceProvider serviceProvider,
ToolboxItem
toolboxItem, bool addAssemblyReference)
AuthoringOM\Design\CustomActivityDesigner.cs (2)
164
ToolboxItem
item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { rootActivity.GetType() }) as
ToolboxItem
;
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
687
foreach (
ToolboxItem
toolboxItem in toolboxItems)
AuthoringOM\Design\WinOEToolBoxItem.cs (2)
129
ToolboxItem
item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { activityType }) as
ToolboxItem
;