13 references to Component
System.Web.Mobile (3)
UI\MobileControls\Design\ImageDesigner.cs (1)
193
e = new ComponentChangedEventArgs(e.
Component
, e.Member, e.OldValue, _image.NavigateUrl);
UI\MobileControls\Design\LinkDesigner.cs (1)
136
e = new ComponentChangedEventArgs(e.
Component
, e.Member, e.OldValue, _link.NavigateUrl);
UI\MobileControls\Design\PhoneCallDesigner.cs (1)
126
e = new ComponentChangedEventArgs(e.
Component
, e.Member, e.OldValue, _call.AlternateUrl);
System.Windows.Forms (1)
winforms\Managed\System\WinForms\PropertyGrid.cs (1)
2839
if (currentObjects[i] == e.
Component
) {
System.Workflow.ComponentModel (9)
AuthoringOM\Design\ActivityDesigner.cs (4)
2237
if (e.
Component
!= null && (e.OldValue is ActivityBind && !(e.NewValue is ActivityBind)) ||
2239
TypeDescriptor.Refresh(e.
Component
);
2242
Activity changedActivity = (referenceService != null) ? referenceService.GetComponent(e.
Component
) as Activity : e.
Component
as Activity;
AuthoringOM\Design\CompositeActivityDesigner.cs (2)
1484
Activity changedActivity = (referenceService != null) ? referenceService.GetComponent(e.
Component
) as Activity : e.
Component
as Activity;
AuthoringOM\Design\DocumentOutline.cs (2)
381
else if (e.Member != null && e.
Component
is Activity)
383
WorkflowOutlineNode node = this.activityToNodeMapping[e.
Component
] as WorkflowOutlineNode;
AuthoringOM\Design\ReferenceService.cs (1)
141
IComponent comp = ((IReferenceService)this).GetComponent(cevent.
Component
);