25 references to ParentProperty
System.Activities.Presentation (25)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\PropertyValueToDisplayNameConverter.cs (1)
55ModelPropertyEntryBase propertyEntry = propertyValue.ParentProperty as ModelPropertyEntryBase;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\PropertyValueToStandardValuesConverter.cs (1)
42ModelPropertyEntryBase parentProperty = (ModelPropertyEntryBase)propertyValue.ParentProperty;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntry.cs (1)
473ModelPropertyEntryBase parentProperty = (ModelPropertyEntryBase)parentValue.ParentProperty;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyEntryBase.cs (1)
139_depth = ((ModelPropertyEntryBase)ParentValue.ParentProperty).Depth + 1;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyIndexer.cs (3)
88return _parentCollection.ParentValue.ParentProperty.CategoryName; 98return _parentCollection.ParentValue.ParentProperty.Description; 108return _parentCollection.ParentValue.ParentProperty.IsAdvanced;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValue.cs (7)
174return (ModelPropertyEntryBase)this.ParentProperty; 204if (this.ParentProperty.PropertyType == typeof(string)) 221if (stringToConvert != null && typeof(string).Equals(this.ParentProperty.PropertyType)) 231else if (EditorUtilities.IsNullableEnumType(this.ParentProperty.PropertyType) && stringToConvert.Equals(EditorUtilities.NullString, StringComparison.Ordinal)) 246this.ParentProperty.DisplayName))); 260if (typeof(IList).IsAssignableFrom(this.ParentProperty.PropertyType)) 264else if (EditorUtilities.IsNullableEnumType(this.ParentProperty.PropertyType))
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelPropertyValueCollection.cs (2)
397ModelPropertyEntry parentAsEntry = ParentValue.ParentProperty as ModelPropertyEntry; 403ModelPropertyIndexer parentAsIndexer = ParentValue.ParentProperty as ModelPropertyIndexer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Model\ModelUtilities.cs (1)
148property = property.ParentValue == null ? null : property.ParentValue.ParentProperty;
System.Activities.Presentation\System\Activities\Presentation\Converters\ModelPropertyEntryToModelItemConverter.cs (1)
31propertyEntry = propertyValue.ParentProperty;
System.Activities.Presentation\System\Activities\Presentation\DesignObjectWrapper.cs (2)
781var editor = wrapper.GetDynamicPropertyValueEditor(propertyValue.ParentProperty.PropertyName); 785Fx.Assert(false, "PropertyValue editor not found for '" + propertyValue.ParentProperty.PropertyName + "'");
System.Activities.Presentation\System\Activities\Presentation\View\ExpressionValueEditor.cs (3)
29ModelItem item = (ModelItem)converter.Convert(propertyValue.ParentProperty, typeof(ModelItem), false, null); 94typeToStringConverter.Convert(etb.ExpressionType ?? propertyValue.ParentProperty.PropertyType, typeof(string), null, CultureInfo.CurrentCulture); 97hint.Text = string.Format(CultureInfo.CurrentCulture, hintFormatString, propertyValue.ParentProperty.PropertyName, friendlyTypeName);
System.Activities.Presentation\System\Activities\Presentation\View\PropertyEntryToEditingContextConverter.cs (1)
21propertyEntry = propertyValue.ParentProperty;
System.Activities.Presentation\System\Activities\Presentation\View\PropertyEntryToEditorOptionConverter.cs (1)
28propertyEntry = propertyValue.ParentProperty;