12 references to MaxHeightProperty
PresentationFramework (12)
System\Windows\Controls\Primitives\PopupRoot.cs (1)
278
_adornerDecorator.SetBinding(
MaxHeightProperty
, binding);
System\Windows\Controls\TextBox.cs (5)
54
MaxHeightProperty
.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback));
1802
ReadLocalValue(
MaxHeightProperty
) != DependencyProperty.UnsetValue ||
1807
this.ScrollViewer.ClearValue(
MaxHeightProperty
);
1840
ReadLocalValue(
MaxHeightProperty
) != DependencyProperty.UnsetValue ||
1844
RenderScope.ClearValue(
MaxHeightProperty
);
System\Windows\Documents\TextSchema.cs (1)
1175
FrameworkElement.
MaxHeightProperty
,
System\Windows\FrameworkElement.cs (2)
3625
get { return (double) GetValue(
MaxHeightProperty
); }
3626
set { SetValue(
MaxHeightProperty
, value); }
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2544
DependencyProperty dp = System.Windows.FrameworkElement.
MaxHeightProperty
;
System\Windows\Markup\KnownTypes.cs (1)
1780
return System.Windows.FrameworkElement.
MaxHeightProperty
;
System\Windows\Window.cs (1)
53
MaxHeightProperty
.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMaxHeightChanged)));