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