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