1 instantiation of PropertyContainer
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\StandardCategoryLayout.cs (1)
25return new PropertyContainer();
108 references to PropertyContainer
System.Activities.Presentation (108)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\CategoryContainerAutomationPeer.cs (2)
148PropertyContainer propertyContainer = properties.ItemContainerGenerator.ContainerFromIndex(i) as PropertyContainer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\PropertyContainerAutomationPeer.cs (7)
30private PropertyContainer _container; 36public PropertyContainerAutomationPeer(PropertyContainer container) 84return typeof(PropertyContainer).Name; 121private static void HookUpFocusEvents(PropertyContainer container, EventHandler valueChangedEvent) 125DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(PropertyContainer)); 167private static void UnHookFocusEvents(PropertyContainer container, EventHandler valueChangedEvent) 171DependencyPropertyDescriptor dpd = DependencyPropertyDescriptor.FromProperty(PropertySelection.IsSelectedProperty, typeof(PropertyContainer));
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\SubPropertyEditorAutomationPeer.cs (2)
111PropertyContainer propertyContainer = properties.ItemContainerGenerator.ContainerFromIndex(i) as PropertyContainer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (3)
738FrameworkElement parentPropertyContainer = VisualTreeUtils.FindVisualAncestor<PropertyContainer>(focusableElement); 838internal PropertyContainer FindPropertyEntryVisual(PropertyEntry property, CategoryEntry parentCategory, out bool pendingGeneration) 873PropertyContainer propertyContainer = categoryContainer.ContainerFromProperty(property, out pendingGenerationTemp);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CiderCategoryContainer.cs (5)
227public PropertyContainer ContainerFromProperty(PropertyEntry property, out bool pendingGeneration) 237PropertyContainer propertyContainer = this.BasicPropertyContainersContainer.ItemContainerGenerator.ContainerFromItem(property) as PropertyContainer; 246PropertyContainer propertyContainer = this.AdvancedPropertyContainersContainer.ItemContainerGenerator.ContainerFromItem(property) as PropertyContainer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CiderStandardCategoryLayout.cs (9)
31PropertyEntry property = ((PropertyContainer)element).PropertyEntry; 39PropertyContainer container = element as PropertyContainer; 49PropertyContainer container = sender as PropertyContainer; 80PropertyContainer container = sender as PropertyContainer; 92PropertyContainer container = sender as PropertyContainer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\SubPropertyEditor.cs (7)
356if (e.Property == PropertyContainer.OwningPropertyContainerProperty) 362OnOwningPropertyContainerChanged((PropertyContainer)e.OldValue, (PropertyContainer)e.NewValue); 369private void OnOwningPropertyContainerChanged(PropertyContainer oldValue, PropertyContainer newValue) 416internal PropertyContainer FindSubPropertyEntryVisual(PropertyEntry property) 429return subPropertyListControl.ItemContainerGenerator.ContainerFromItem(property) as PropertyContainer;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\PropertyContainerPopupHelper.cs (6)
36PropertyContainer owningPropertyContainer = (PropertyContainer)this.GetValue(PropertyContainer.OwningPropertyContainerProperty); 46PropertyContainer owningPropertyContainer = (PropertyContainer)this.GetValue(PropertyContainer.OwningPropertyContainerProperty);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\StandardCategoryLayout.cs (3)
30PropertyContainer propertyContainer = element as PropertyContainer; 34propertyContainer.SetBinding(PropertyContainer.PropertyEntryProperty, new Binding());
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueDialogHost.cs (3)
50dialogRoot.CommandBindings.Add(new CommandBinding(PropertyContainer.OpenDialogWindow, dialogHost.OnOpenDialogWindow, dialogHost.OnCanOpenDialogWindow)); 185PropertyContainer container = PropertyContainer.GetOwningPropertyContainer(source);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\PropertyValueEditorCommandHandler.cs (4)
120PropertyContainer container = GetContainerFromEventArgs(e); 193PropertyContainer container = GetContainerFromEventArgs(e); 202private static PropertyContainer GetContainerFromEventArgs(ExecutedRoutedEventArgs e) 210return PropertyContainer.GetOwningPropertyContainer(source);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\PropertySelectionPathInterpreter.cs (1)
80PropertyContainer currentContainer = root.FindPropertyEntryVisual(currentProperty, parentCategory, out pendingGeneration);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\EditModeSwitchButton.cs (13)
21private PropertyContainer _owningContainer; 73PropertyContainer owningContainer = theThis._owningContainer; 155if (e.Property == PropertyContainer.OwningPropertyContainerProperty) { 156PropertyContainer oldContainer = (PropertyContainer)e.OldValue; 157PropertyContainer newContainer = (PropertyContainer)e.NewValue; 175if (e.Property == PropertyContainer.ActiveEditModeProperty || 176e.Property == PropertyContainer.PropertyEntryProperty || 177e.Property == PropertyContainer.DefaultStandardValuesPropertyValueEditorProperty || 178e.Property == PropertyContainer.DefaultPropertyValueEditorProperty) { 184private void AssociateContainerEventHandlers(PropertyContainer container) { 191private void DisassociateContainerEventHandlers(PropertyContainer container) {
System.Activities.Presentation\System\Activities\Presentation\Base\Core\PropertyEditing\PropertyContainer.cs (43)
69typeof(PropertyContainer), 82typeof(PropertyContainer), 95get { return (PropertyEntry)this.GetValue(PropertyContainer.PropertyEntryProperty); } 96set { this.SetValue(PropertyContainer.PropertyEntryProperty, value); } 107PropertyContainer theThis = (PropertyContainer)obj; 143typeof(PropertyContainer), 154get { return (PropertyContainerEditMode)this.GetValue(PropertyContainer.ActiveEditModeProperty); } 155set { this.SetValue(PropertyContainer.ActiveEditModeProperty, value); } 160PropertyContainer theThis = (PropertyContainer)obj; 207typeof(PropertyContainer), 233typeof(PropertyContainer), 234typeof(PropertyContainer), 243public static void SetOwningPropertyContainer(DependencyObject dependencyObject, PropertyContainer value) 248dependencyObject.SetValue(PropertyContainer.OwningPropertyContainerProperty, value); 257public static PropertyContainer GetOwningPropertyContainer(DependencyObject dependencyObject) 262return (PropertyContainer)dependencyObject.GetValue(PropertyContainer.OwningPropertyContainerProperty); 279typeof(PropertyContainer), 293get { return (ControlTemplate)this.GetValue(PropertyContainer.InlineRowTemplateProperty); } 294set { this.SetValue(PropertyContainer.InlineRowTemplateProperty, value); } 301PropertyContainer theThis = (PropertyContainer)obj; 306(e.Property == PropertyContainer.InlineRowTemplateProperty && 311(e.Property == PropertyContainer.ExtendedPopupRowTemplateProperty && 316(e.Property == PropertyContainer.ExtendedPinnedRowTemplateProperty && 336typeof(PropertyContainer), 351get { return (ControlTemplate)this.GetValue(PropertyContainer.ExtendedPopupRowTemplateProperty); } 352set { this.SetValue(PropertyContainer.ExtendedPopupRowTemplateProperty, value); } 368typeof(PropertyContainer), 383get { return (ControlTemplate)this.GetValue(PropertyContainer.ExtendedPinnedRowTemplateProperty); } 384set { this.SetValue(PropertyContainer.ExtendedPinnedRowTemplateProperty, value); } 401typeof(PropertyContainer), 414get { return (PropertyValueEditor)this.GetValue(PropertyContainer.DefaultStandardValuesPropertyValueEditorProperty); } 415set { this.SetValue(PropertyContainer.DefaultStandardValuesPropertyValueEditorProperty, value); } 420PropertyContainer theThis = (PropertyContainer)obj; 439typeof(PropertyContainer), 452get { return (PropertyValueEditor)this.GetValue(PropertyContainer.DefaultPropertyValueEditorProperty); } 453set { this.SetValue(PropertyContainer.DefaultPropertyValueEditorProperty, value); } 541_openDialogWindow = new RoutedCommand("OpenDialogWindow", typeof(PropertyContainer)); 740private static void UpdateControlTemplate(PropertyContainer container)