1 type derived from ToolboxItem
System.Workflow.ComponentModel (1)
AuthoringOM\Design\WinOEToolBoxItem.cs (1)
16public class ActivityToolboxItem : ToolboxItem
1 instantiation of ToolboxItem
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (1)
232instance = new ToolboxItem(discoveredToolType);
59 references to ToolboxItem
System.Activities.Presentation (10)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxControl.cs (6)
38typeof(ToolboxItem), 150public ToolboxItem SelectedTool 152get { return (ToolboxItem)GetValue(SelectedToolProperty); } 356ToolboxItem tool; 373ToolboxItem tool; 389bool TryGetSelectedToolboxItem(out ToolboxItem toolboxItem, out ToolboxItemWrapper toolboxItemWrapper)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\ToolboxItemWrapper.cs (4)
36ToolboxItem toolboxItem; 80internal ToolboxItem ToolboxItem 224ToolboxItem instance = null; 228Activator.CreateInstance(toolboxItemAttributes[0].ToolboxItemType) as ToolboxItem;
System.Drawing (39)
commonui\System\Drawing\Design\IToolboxService.cs (12)
54void AddLinkedToolboxItem(ToolboxItem toolboxItem, IDesignerHost host); 62void AddLinkedToolboxItem(ToolboxItem toolboxItem, string category, IDesignerHost host); 70void AddToolboxItem(ToolboxItem toolboxItem); 76void AddToolboxItem(ToolboxItem toolboxItem, string category); 82ToolboxItem DeserializeToolboxItem(object serializedObject); 88ToolboxItem DeserializeToolboxItem(object serializedObject, IDesignerHost host); 94ToolboxItem GetSelectedToolboxItem(); 100ToolboxItem GetSelectedToolboxItem(IDesignerHost host); 176void RemoveToolboxItem(ToolboxItem toolboxItem); 182void RemoveToolboxItem(ToolboxItem toolboxItem, string category); 195object SerializeToolboxItem(ToolboxItem toolboxItem); 209void SetSelectedToolboxItem(ToolboxItem toolboxItem);
commonui\System\Drawing\Design\IToolboxUser.cs (2)
29bool GetToolSupported(ToolboxItem tool); 35void 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'/> 496ToolboxItem 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 948private ToolboxItem _item; 949internal 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. 37public ToolboxItemCollection(ToolboxItem[] value) { 43/// <para>Represents the entry at the specified index of the <see cref='System.Drawing.Design.ToolboxItem'/>.</para> 45public ToolboxItem this[int index] { 47return ((ToolboxItem)(InnerList[index])); 54/// <see cref='System.Drawing.Design.ToolboxItemCollection'/> contains the specified <see cref='System.Drawing.Design.ToolboxItem'/>.</para> 56public bool Contains(ToolboxItem value) { 65public void CopyTo(ToolboxItem[] array, int index) { 71/// <para>Returns the index of a <see cref='System.Drawing.Design.ToolboxItem'/> in 74public int IndexOf(ToolboxItem value) {
commonui\System\Drawing\Design\ToolboxItemCreatorCallback.cs (1)
16public delegate ToolboxItem ToolboxItemCreatorCallback(object serializedObject, string format);
System.Workflow.ComponentModel (10)
AuthoringOM\Design\ActivityDesigner.cs (2)
2426bool IToolboxUser.GetToolSupported(ToolboxItem toolboxItem) 2514void IToolboxUser.ToolPicked(ToolboxItem toolboxItem)
AuthoringOM\Design\CompositeActivityDesigner.cs (3)
622ToolboxItem toolBoxItem = ts.DeserializeToolboxItem(dataObj, designerHost); 636private static ICollection GetActivitiesFromToolboxItem(IServiceProvider serviceProvider, bool addAssemblyReference, IDesignerHost designerHost, ICollection activities, ToolboxItem toolBoxItem) 654internal static Activity[] DeserializeActivitiesFromToolboxItem(IServiceProvider serviceProvider, ToolboxItem toolboxItem, bool addAssemblyReference)
AuthoringOM\Design\CustomActivityDesigner.cs (2)
164ToolboxItem item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { rootActivity.GetType() }) as ToolboxItem;
AuthoringOM\Design\Dialogs\ThemeConfigurationDialog.cs (1)
687foreach (ToolboxItem toolboxItem in toolboxItems)
AuthoringOM\Design\WinOEToolBoxItem.cs (2)
129ToolboxItem item = Activator.CreateInstance(toolboxItemAttrib.ToolboxItemType, new object[] { activityType }) as ToolboxItem;