18 references to RowDefinitions
Microsoft.VisualStudio.LanguageServices (4)
PreviewPane\PreviewPane.xaml.cs (4)
181
if (grid.
RowDefinitions
.Count == 0)
183
grid.
RowDefinitions
.Add(new RowDefinition());
187
grid.
RowDefinitions
.Add(new RowDefinition() { Height = GridLength.Auto });
191
Grid.SetRow(previewElement, grid.
RowDefinitions
.Count - 1);
Microsoft.VisualStudio.LanguageServices.CSharp (2)
SemanticSearch\SemanticSearchToolWindowImpl.cs (2)
114
toolWindowGrid.
RowDefinitions
.Add(new RowDefinition() { Height = new GridLength(ToolBarHeight, GridUnitType.Pixel) });
115
toolWindowGrid.
RowDefinitions
.Add(new RowDefinition());
PresentationFramework (10)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
362
return Math.Max(0, this.OwningGrid.
RowDefinitions
.Count - 1);
366
return this.OwningGrid.
RowDefinitions
.Count;
382
if (this.OwningGrid != null && row >= 0 && row < this.OwningGrid.
RowDefinitions
.Count && column >= 0 && column < this.OwningGrid.ColumnDefinitions.Count)
System\Windows\Controls\BorderGapMaskConverter.cs (2)
98
grid.
RowDefinitions
.Add(rowDef1);
99
grid.
RowDefinitions
.Add(rowDef2);
System\Windows\Controls\GridSplitter.cs (3)
551
int count = (_resizeData.ResizeDirection == GridResizeDirection.Columns) ? _resizeData.Grid.ColumnDefinitions.Count : _resizeData.Grid.
RowDefinitions
.Count;
769
return direction == GridResizeDirection.Columns ? (DefinitionBase)grid.ColumnDefinitions[index] : (DefinitionBase)grid.
RowDefinitions
[index];
833
IEnumerable definitions = _resizeData.ResizeDirection == GridResizeDirection.Columns ? (IEnumerable)_resizeData.Grid.ColumnDefinitions : (IEnumerable)_resizeData.Grid.
RowDefinitions
;
System\Windows\FrameworkElementFactory.cs (1)
905
parentGrid.
RowDefinitions
.Add(childNodeRowDefinition);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6422
bamlMember.GetDelegate = 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 });