6 writes to MaxHeight
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineDiagnostics\InlineDiagnosticsTag.cs (1)
87MaxHeight = lineHeight,
Microsoft.VisualStudio.LanguageServices (3)
PreviewPane\PreviewPane.xaml.cs (3)
318TitleTextBlock.MaxHeight = _heightForThreeLineTitle; 398TitleTextBlock.MaxHeight = double.PositiveInfinity; 416TitleTextBlock.MaxHeight = _heightForThreeLineTitle;
PresentationFramework (2)
System\Windows\Controls\TextBox.cs (2)
1825this.ScrollViewer.MaxHeight = value; 1861RenderScope.MaxHeight = value;
10 references to MaxHeight
PresentationFramework (9)
System\Windows\Controls\DataGridRow.cs (1)
555double maxHeight = MaxHeight;
System\Windows\Controls\TextBox.cs (2)
1823if (MaxLines < Int32.MaxValue && this.ScrollViewer.MaxHeight != value) 1859if (MaxLines < Int32.MaxValue && RenderScope.MaxHeight != value)
System\Windows\FrameworkElement.cs (1)
4040maxHeight = e.MaxHeight;
System\Windows\Window.cs (5)
2770Point maxSizeDeviceUnits = LogicalToDeviceUnits(new Point(MaxWidth, MaxHeight)); 3496if (MinHeight > MaxHeight) 3502if (!Double.IsPositiveInfinity(MaxHeight)) 3504mm.maxHeight = Math.Min(MaxHeight, maxSizeLogicalUnits.Y); 5782ValidateLengthForHeightWidth(MaxHeight);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
313SD.Size maxElementSize = Convert.ToSystemDrawingSize(new Size(childFrameworkElement.MaxWidth, childFrameworkElement.MaxHeight), scale);