18 references to PropertyNames
System.Activities.Core.Presentation (18)
System\Activities\Core\Presentation\CatchDesigner.xaml.cs (1)
122return PropertyNames.ExceptionType;
System\Activities\Core\Presentation\MorphHelpers.cs (15)
73ModelItem originalActivityActionArgument = originalValue.Properties[PropertyNames.ActionArgument].Value; 78iterationDelegateArgument.Name = (string)originalActivityActionArgument.Properties[PropertyNames.NameProperty].Value.GetCurrentValue(); 79morphed.Properties[PropertyNames.ActionArgument].SetValue(iterationDelegateArgument); 82ModelItem originalActivityActionHandler = originalValue.Properties[PropertyNames.ActionHandler].Value; 85morphed.Properties[PropertyNames.ActionHandler].SetValue(originalActivityActionHandler); 86originalValue.Properties[PropertyNames.ActionHandler].SetValue(null); 101ModelItem originalActivityFuncArgument = originalValue.Properties[PropertyNames.ActionArgument].Value; 106newActivityActionArgument.Name = (string)originalActivityFuncArgument.Properties[PropertyNames.NameProperty].Value.GetCurrentValue(); 107morphed.Properties[PropertyNames.ActionArgument].SetValue(newActivityActionArgument); 110ModelItem originalActivityFuncResult = originalValue.Properties[PropertyNames.ResultProperty].Value; 115newActivityActionResult.Name = (string)originalActivityFuncResult.Properties[PropertyNames.NameProperty].Value.GetCurrentValue(); 116morphed.Properties[PropertyNames.ResultProperty].SetValue(newActivityActionResult); 119ModelItem originalActivityActionHandler = originalValue.Properties[PropertyNames.ActionHandler].Value; 122morphed.Properties[PropertyNames.ActionHandler].SetValue(originalActivityActionHandler); 123originalValue.Properties[PropertyNames.ActionHandler].SetValue(null);
System\Activities\Core\Presentation\TryCatchDesigner.xaml.cs (2)
345catchType.GetProperty(PropertyNames.Action).SetValue(catchObject, activityAction, null); 346activityActionType.GetProperty(PropertyNames.ActionArgument).SetValue(activityAction, exceptionArgument, null);