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)
63MaxHeightProperty.OverrideMetadata(typeof(TextBox), new FrameworkPropertyMetadata(callback)); 1802ReadLocalValue(MaxHeightProperty) != DependencyProperty.UnsetValue || 1807this.ScrollViewer.ClearValue(MaxHeightProperty); 1840ReadLocalValue(MaxHeightProperty) != DependencyProperty.UnsetValue || 1844RenderScope.ClearValue(MaxHeightProperty);
src\Framework\System\Windows\Documents\TextSchema.cs (1)
1178FrameworkElement.MaxHeightProperty,
src\Framework\System\Windows\FrameworkElement.cs (2)
3635get { return (double) GetValue(MaxHeightProperty); } 3636set { SetValue(MaxHeightProperty, value); }
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2538DependencyProperty dp = System.Windows.FrameworkElement.MaxHeightProperty;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1781return System.Windows.FrameworkElement.MaxHeightProperty;
src\Framework\System\Windows\Window.cs (1)
76MaxHeightProperty.OverrideMetadata(typeof(Window), new FrameworkPropertyMetadata(new PropertyChangedCallback(_OnMaxHeightChanged)));