3 instantiations of DynamicActivityProperty
System.Activities.Core.Presentation (2)
System\Activities\Core\Presentation\DynamicActivityPropertyChooserViewModel.cs (2)
112
DynamicActivityProperty clone = new
DynamicActivityProperty
();
130
DynamicActivityProperty unresolvedProperty = new
DynamicActivityProperty
();
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (1)
128
DynamicActivityProperty property = new
DynamicActivityProperty
()
57 references to DynamicActivityProperty
System.Activities (23)
System\Activities\ActivityBuilder.cs (7)
25
KeyedCollection<string,
DynamicActivityProperty
> properties;
54
public KeyedCollection<string,
DynamicActivityProperty
> Properties
166
internal static KeyedCollection<string,
DynamicActivityProperty
> CreateActivityPropertyCollection()
171
class ActivityPropertyCollection : KeyedCollection<string,
DynamicActivityProperty
>
173
protected override string GetKeyForItem(
DynamicActivityProperty
item)
291
KeyedCollection<string,
DynamicActivityProperty
> properties;
320
public KeyedCollection<string,
DynamicActivityProperty
> Properties
System\Activities\DynamicActivity.cs (4)
59
public KeyedCollection<string,
DynamicActivityProperty
> Properties
106
KeyedCollection<string,
DynamicActivityProperty
> IDynamicActivity.Properties
247
public KeyedCollection<string,
DynamicActivityProperty
> Properties
294
KeyedCollection<string,
DynamicActivityProperty
> IDynamicActivity.Properties
System\Activities\DynamicActivityTypeDescriptor.cs (8)
31
public KeyedCollection<string,
DynamicActivityProperty
> Properties
121
foreach (
DynamicActivityProperty
property in Properties)
147
DynamicActivityProperty
activityProperty;
150
public DynamicActivityPropertyDescriptor(
DynamicActivityProperty
activityProperty, Type componentType)
246
class ActivityPropertyCollection : KeyedCollection<string,
DynamicActivityProperty
>
256
protected override void InsertItem(int index,
DynamicActivityProperty
item)
272
protected override void SetItem(int index,
DynamicActivityProperty
item)
302
protected override string GetKeyForItem(
DynamicActivityProperty
item)
System\Activities\DynamicUpdate\DynamicUpdateServices.cs (1)
225
foreach (
DynamicActivityProperty
property in activityDefinition.Properties)
System\Activities\IDynamicActivity.cs (1)
13
KeyedCollection<string,
DynamicActivityProperty
> Properties { get; }
System\Activities\XamlIntegration\ActivityBuilderXamlWriter.cs (1)
87
this.activityPropertyXamlType = this.SchemaContext.GetXamlType(typeof(
DynamicActivityProperty
));
System\Activities\XamlIntegration\DynamicActivityXamlReader.cs (1)
97
this.activityPropertyXamlType = this.schemaContext.GetXamlType(typeof(
DynamicActivityProperty
));
System.Activities.Core.Presentation (22)
System\Activities\Core\Presentation\DynamicActivityPropertyChooser.xaml.cs (1)
52
public Predicate<
DynamicActivityProperty
> Filter
System\Activities\Core\Presentation\DynamicActivityPropertyChooserViewModel.cs (16)
18
private Predicate<
DynamicActivityProperty
> filter;
20
private ReadOnlyCollection<
DynamicActivityProperty
> dropDownItems;
35
public Predicate<
DynamicActivityProperty
> Filter
48
public ReadOnlyCollection<
DynamicActivityProperty
> DropDownItems
54
this.dropDownItems = new ReadOnlyCollection<
DynamicActivityProperty
>(new List<
DynamicActivityProperty
>());
99
List<
DynamicActivityProperty
> list = new List<
DynamicActivityProperty
>();
106
DynamicActivityProperty
property = modelItem.GetCurrentValue() as
DynamicActivityProperty
;
112
DynamicActivityProperty
clone = new DynamicActivityProperty();
130
DynamicActivityProperty
unresolvedProperty = new DynamicActivityProperty();
139
this.DropDownItems = new ReadOnlyCollection<
DynamicActivityProperty
>(list);
144
private class DynamicaActivityPropertyComparer : IComparer<
DynamicActivityProperty
>
146
public int Compare(
DynamicActivityProperty
x,
DynamicActivityProperty
y)
System\Activities\Core\Presentation\DynamicActivityPropertyToTooltipConverter.cs (2)
18
DynamicActivityProperty
property = value as
DynamicActivityProperty
;
System\Activities\Core\Presentation\InvokeDelegateDesigner.xaml.cs (2)
56
private static bool IsActivityDelegate(
DynamicActivityProperty
instance)
135
DynamicActivityProperty
property = DynamicActivityPropertyUtilities.Find(manager.Root.Properties["Properties"].Collection, propertyName);
System\Activities\Core\Presentation\InvokeDelegateValidationFeature.cs (1)
125
DynamicActivityProperty
property = null;
System.Activities.Presentation (12)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\ActivityBuilderExtensions.cs (1)
37
foreach (
DynamicActivityProperty
property in activityBuilder.Properties)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\Xaml\WorkflowDesignerXamlHelper.cs (4)
37
this.dynamicActivityPropertyNameMember = new XamlMember(typeof(
DynamicActivityProperty
).GetProperty("Name"), this.XamlSchemaContext);
38
this.dynamicActivityPropertyValueMember = new XamlMember(typeof(
DynamicActivityProperty
).GetProperty("Value"), this.XamlSchemaContext);
617
XamlType dynamicActivityPropertyType = this.XamlSchemaContext.GetXamlType(typeof(
DynamicActivityProperty
));
662
DynamicActivityProperty
property = activityBuilder.Properties[propertyName];
System.Activities.Presentation\System\Activities\Presentation\DynamicActivityPropertyUtilities.cs (3)
13
public static
DynamicActivityProperty
Find(ModelItemCollection properties, string propertyName)
17
DynamicActivityProperty
property = (
DynamicActivityProperty
)entry.GetCurrentValue();
System.Activities.Presentation\System\Activities\Presentation\Model\ModelSearchServiceImpl.cs (1)
608
if (typeof(
DynamicActivityProperty
).IsAssignableFrom(modelItem.ItemType))
System.Activities.Presentation\System\Activities\Presentation\View\ArgumentDesigner.xaml.cs (1)
128
DynamicActivityProperty
property = new DynamicActivityProperty()
System.Activities.Presentation\System\Activities\Presentation\Xaml\ActivityBuilderHelper.cs (2)
43
foreach (
DynamicActivityProperty
property in instance.Properties)
57
internal static Variable GetVariableFromProperty(
DynamicActivityProperty
property)