12 references to MaxHeightProperty
PresentationFramework (12)
System\Windows\Controls\Primitives\PopupRoot.cs (1)
289
_adornerDecorator.SetBinding(
MaxHeightProperty
, binding);
System\Windows\Controls\TextBox.cs (5)
53
MaxHeightProperty
.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback));
1803
ReadLocalValue(
MaxHeightProperty
) != DependencyProperty.UnsetValue ||
1808
this.ScrollViewer.ClearValue(
MaxHeightProperty
);
1841
ReadLocalValue(
MaxHeightProperty
) != DependencyProperty.UnsetValue ||
1845
RenderScope.ClearValue(
MaxHeightProperty
);
System\Windows\Documents\TextSchema.cs (1)
1169
FrameworkElement.
MaxHeightProperty
,
System\Windows\FrameworkElement.cs (2)
3615
get { return (double) GetValue(
MaxHeightProperty
); }
3616
set { SetValue(
MaxHeightProperty
, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2615
DependencyProperty dp = System.Windows.FrameworkElement.
MaxHeightProperty
;
System\Windows\Markup\KnownTypes.cs (1)
1773
return System.Windows.FrameworkElement.
MaxHeightProperty
;
System\Windows\Window.cs (1)
47
MaxHeightProperty
.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMaxHeightChanged)));