12 references to MaxHeightProperty
PresentationFramework (12)
src\Framework\System\Windows\Controls\Primitives\PopupRoot.cs (1)
284
_adornerDecorator.SetBinding(
MaxHeightProperty
, binding);
src\Framework\System\Windows\Controls\TextBox.cs (5)
63
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
);
src\Framework\System\Windows\Documents\TextSchema.cs (1)
1178
FrameworkElement.
MaxHeightProperty
,
src\Framework\System\Windows\FrameworkElement.cs (2)
3635
get { return (double) GetValue(
MaxHeightProperty
); }
3636
set { SetValue(
MaxHeightProperty
, value); }
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2538
DependencyProperty dp = System.Windows.FrameworkElement.
MaxHeightProperty
;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1781
return System.Windows.FrameworkElement.
MaxHeightProperty
;
src\Framework\System\Windows\Window.cs (1)
76
MaxHeightProperty
.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMaxHeightChanged)));