1 type derived from CategoryContainer
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CiderCategoryContainer.cs (1)
30internal class CiderCategoryContainer : Blend.CategoryContainer
50 references to CategoryContainer
System.Activities.Presentation (50)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Automation\CategoryContainerAutomationPeer.cs (1)
187return typeof(CategoryContainer).Name;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\CategoryList.cs (1)
890internal CategoryContainer FindCategoryEntryVisual(CategoryEntry category)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\FromExpression\Framework\PropertyInspector\CategoryContainer.xaml.cs (45)
30"PopupHost", typeof(Popup), typeof(CategoryContainer), new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.Inherits, OnPopupHostChanged)); 35typeof(CategoryContainer), 40public static readonly DependencyProperty ExpandedProperty = DependencyProperty.Register("Expanded", typeof(bool), typeof(CategoryContainer), new FrameworkPropertyMetadata(false, new PropertyChangedCallback(OnExpandedChanged))); 42public static readonly DependencyProperty AdvancedSectionPinnedProperty = DependencyProperty.Register("AdvancedSectionPinned", typeof(bool), typeof(CategoryContainer), new FrameworkPropertyMetadata(false)); 44public static readonly DependencyProperty BasicPropertyMatchesFilterProperty = DependencyProperty.Register("BasicPropertyMatchesFilter", typeof(bool), typeof(CategoryContainer), new FrameworkPropertyMetadata(true)); 46public static readonly DependencyProperty AdvancedPropertyMatchesFilterProperty = DependencyProperty.Register("AdvancedPropertyMatchesFilter", typeof(bool), typeof(CategoryContainer), new FrameworkPropertyMetadata(true, new PropertyChangedCallback(CategoryContainer.OnAdvancedPropertyMatchesFilterChanged))); 48public static readonly DependencyProperty ShowAdvancedHeaderProperty = DependencyProperty.Register("ShowAdvancedHeader", typeof(bool), typeof(CategoryContainer), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.None, null, new CoerceValueCallback(CategoryContainer.CoerceShowAdvancedHeader))); 50public static readonly DependencyProperty OwningCategoryContainerProperty = DependencyProperty.RegisterAttached("OwningCategoryContainer", typeof(CategoryContainer), typeof(CategoryContainer), new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.Inherits)); 90this.SetBinding(CategoryContainer.BasicPropertyMatchesFilterProperty, basicMatchesFilterBinding); 95this.SetBinding(CategoryContainer.AdvancedPropertyMatchesFilterProperty, advancedMatchesFilterBinding); 120get { return (CategoryBase)this.GetValue(CategoryContainer.CategoryProperty); } 121set { this.SetValue(CategoryContainer.CategoryProperty, value); } 126get { return (bool)this.GetValue(CategoryContainer.ExpandedProperty); } 127set { this.SetValue(CategoryContainer.ExpandedProperty, value); } 132get { return (bool)this.GetValue(CategoryContainer.AdvancedSectionPinnedProperty); } 133set { this.SetValue(CategoryContainer.AdvancedSectionPinnedProperty, value); } 138get { return (bool)this.GetValue(CategoryContainer.BasicPropertyMatchesFilterProperty); } 139set { this.SetValue(CategoryContainer.BasicPropertyMatchesFilterProperty, value); } 144get { return (bool)this.GetValue(CategoryContainer.AdvancedPropertyMatchesFilterProperty); } 145set { this.SetValue(CategoryContainer.AdvancedPropertyMatchesFilterProperty, value); } 150get { return (bool)this.GetValue(CategoryContainer.ShowAdvancedHeaderProperty); } 151set { this.SetValue(CategoryContainer.ShowAdvancedHeaderProperty, value); } 160public static void SetOwningCategoryContainer(DependencyObject dependencyObject, CategoryContainer value) 166dependencyObject.SetValue(CategoryContainer.OwningCategoryContainerProperty, value); 174public static CategoryContainer GetOwningCategoryContainer(DependencyObject dependencyObject) 180return (CategoryContainer)dependencyObject.GetValue(CategoryContainer.OwningCategoryContainerProperty); 185return (Popup)target.GetValue(CategoryContainer.PopupHostProperty); 190target.SetValue(CategoryContainer.PopupHostProperty, value); 195CategoryContainer categoryEditor = d as CategoryContainer; 212CategoryContainer theThis = (CategoryContainer)d; 254theThis.CoerceValue(CategoryContainer.ShowAdvancedHeaderProperty); 350Popup popupHost = CategoryContainer.GetPopupHost(this); 360CategoryContainer editor = d as CategoryContainer; 363editor.CoerceValue(CategoryContainer.ShowAdvancedHeaderProperty); 369CategoryContainer editor = d as CategoryContainer; 404if (CategoryContainer.GetPopupHost(this) == null) 436this.CoerceValue(CategoryContainer.ShowAdvancedHeaderProperty);
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Selection\CategorySelectionStop.cs (2)
46_expansionProperty = isAdvanced ? Blend.CategoryContainer.AdvancedSectionPinnedProperty : Blend.CategoryContainer.ExpandedProperty;
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Views\ByCategoryViewManager.cs (1)
188CategoryContainer container = categoryList.FindCategoryEntryVisual(categoryEntry);