2 instantiations of ActivityBindPropertyDescriptor
System.Workflow.ComponentModel (2)
AuthoringOM\Design\PropertyDescriptors.cs (2)
196
newProperties[key] = new
ActivityBindPropertyDescriptor
(serviceProvider, propDesc, propertyOwner);
229
properties.Add(new
ActivityBindPropertyDescriptor
(serviceProvider, propertyDescriptor, eventOwner));
15 references to ActivityBindPropertyDescriptor
System.Workflow.ComponentModel (15)
AuthoringOM\Bind.cs (1)
917
foreach (MemberInfo memberInfo in
ActivityBindPropertyDescriptor
.GetBindableMembers(targetActivity, outerPropertyContext))
AuthoringOM\Design\ActivityDesigner.cs (3)
1207
ActivityBindPropertyDescriptor
defaultPropEvent = TypeDescriptor.GetProperties(Activity)[defaultEventAttribute.Name] as
ActivityBindPropertyDescriptor
;
2219
canBindProperty = (propertyContext != null &&
ActivityBindPropertyDescriptor
.IsBindableProperty(propertyContext.PropertyDescriptor) && !propertyContext.PropertyDescriptor.IsReadOnly);
AuthoringOM\Design\CustomActivityDesigner.cs (1)
900
if (propertyDescriptor is
ActivityBindPropertyDescriptor
)
AuthoringOM\Design\PropertyDescriptors.cs (6)
102
MemberInfo matchingMember =
ActivityBindPropertyDescriptor
.FindMatchingMember(name, designedType, isVB);
192
else if (!(propDesc is
ActivityBindPropertyDescriptor
) &&
ActivityBindPropertyDescriptor
.IsBindableProperty(propDesc))
228
if (!(propertyDescriptor is
ActivityBindPropertyDescriptor
) &&
ActivityBindPropertyDescriptor
.IsBindableProperty(propertyDescriptor))
549
MemberInfo matchingMember =
ActivityBindPropertyDescriptor
.FindMatchingMember(fieldName, designedType, isVB);
AuthoringOM\Design\TypeConverters.cs (2)
364
ActivityBindPropertyDescriptor
activityBindPropertyDescriptor = currentContext.PropertyDescriptor as
ActivityBindPropertyDescriptor
;
AuthoringOM\Design\UITypeEditors.cs (1)
151
ActivityBindPropertyDescriptor
.CreateField(context, bindDialog.Binding, true);
AuthoringOM\Design\XomlDesignerLoader.cs (1)
891
if (!activityDesigner.IsLocked &&
ActivityBindPropertyDescriptor
.IsBindableProperty(propDesc) && !propDesc.IsReadOnly)