19 references to RowDefinitions
Microsoft.VisualStudio.LanguageServices (4)
PreviewPane\PreviewPane.xaml.cs (4)
182if (grid.RowDefinitions.Count == 0) 184grid.RowDefinitions.Add(new RowDefinition()); 188grid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); 192Grid.SetRow(previewElement, grid.RowDefinitions.Count - 1);
Microsoft.VisualStudio.LanguageServices.CSharp (3)
SemanticSearch\SemanticSearchToolWindowImpl.cs (3)
121toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(ToolBarHeight, GridUnitType.Pixel) }); 122toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); 123toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(1, GridUnitType.Star) });
PresentationFramework (10)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
346return Math.Max(0, this.OwningGrid.RowDefinitions.Count - 1); 350return this.OwningGrid.RowDefinitions.Count; 366if (this.OwningGrid != null && row >= 0 && row < this.OwningGrid.RowDefinitions.Count && column >= 0 && column < this.OwningGrid.ColumnDefinitions.Count)
System\Windows\Controls\BorderGapMaskConverter.cs (2)
99grid.RowDefinitions.Add(rowDef1); 100grid.RowDefinitions.Add(rowDef2);
System\Windows\Controls\GridSplitter.cs (3)
551int count = (_resizeData.ResizeDirection == GridResizeDirection.Columns) ? _resizeData.Grid.ColumnDefinitions.Count : _resizeData.Grid.RowDefinitions.Count; 769return direction == GridResizeDirection.Columns ? (DefinitionBase)grid.ColumnDefinitions[index] : (DefinitionBase)grid.RowDefinitions[index]; 833IEnumerable definitions = _resizeData.ResizeDirection == GridResizeDirection.Columns ? (IEnumerable)_resizeData.Grid.ColumnDefinitions : (IEnumerable)_resizeData.Grid.RowDefinitions;
System\Windows\FrameworkElementFactory.cs (1)
895parentGrid.RowDefinitions.Add(childNodeRowDefinition);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6893GetDelegate = delegate (object target) { return ((System.Windows.Controls.Grid)target).RowDefinitions; },
Roslyn.VisualStudio.DiagnosticsWindow (2)
PerfMargin\PerfMarginPanel.cs (2)
39_mainGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); 40_mainGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });