1 write to RowDefinitions
PresentationFramework (1)
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6895
SetDelegate = delegate(object target, object value) { ((System.Windows.Controls.Grid)target).
RowDefinitions
= (System.Windows.Controls.RowDefinitionCollection)value; },
11 references to RowDefinitions
PresentationFramework (11)
System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
342
return Math.Max(0, this.OwningGrid.
RowDefinitions
.Count - 1);
346
return this.OwningGrid.
RowDefinitions
.Count;
362
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)
550
int count = (_resizeData.ResizeDirection == GridResizeDirection.Columns) ? _resizeData.Grid.ColumnDefinitions.Count : _resizeData.Grid.
RowDefinitions
.Count;
768
return direction == GridResizeDirection.Columns ? (DefinitionBase)grid.ColumnDefinitions[index] : (DefinitionBase)grid.
RowDefinitions
[index];
832
IEnumerable definitions = _resizeData.ResizeDirection == GridResizeDirection.Columns ? (IEnumerable)_resizeData.Grid.ColumnDefinitions : (IEnumerable)_resizeData.Grid.
RowDefinitions
;
System\Windows\Controls\RowDefinition.cs (1)
509
if (value.
RowDefinitions
.Count > 0)
System\Windows\FrameworkElementFactory.cs (1)
894
parentGrid.
RowDefinitions
.Add(childNodeRowDefinition);
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6894
GetDelegate = delegate (object target) { return ((System.Windows.Controls.Grid)target).
RowDefinitions
; },