18 references to RowProperty
PresentationFramework (18)
src\Framework\System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
143int childRow = (int)child.GetValue(Grid.RowProperty); 394int childRow = (int)child.GetValue(Grid.RowProperty); 638int childRow = (int)child.GetValue(Grid.RowProperty);
src\Framework\System\Windows\Automation\Peers\DateTimeAutomationPeer.cs (3)
672Debug.Assert((int)owningButton.GetValue(Grid.RowProperty) > 0); 675return (int)owningButton.GetValue(Grid.RowProperty) - 1; 679return (int)owningButton.GetValue(Grid.RowProperty);
src\Framework\System\Windows\Controls\Grid.cs (2)
203element.SetValue(RowProperty, value); 219return ((int)element.GetValue(RowProperty));
src\Framework\System\Windows\Controls\GridSplitter.cs (1)
530splitterIndex = (int)GetValue(_resizeData.ResizeDirection == GridResizeDirection.Columns ? Grid.ColumnProperty : Grid.RowProperty);
src\Framework\System\Windows\Controls\Primitives\CalendarItem.cs (3)
962titleCell.SetValue(Grid.RowProperty, 0); 974dayCell.SetValue(Grid.RowProperty, i); 1000monthCell.SetValue(Grid.RowProperty, i);
src\Framework\System\Windows\Controls\ScrollViewer.cs (4)
2751content.SetValue(Grid.RowProperty, 0); 2759hsb.SetValue(Grid.RowProperty, 1); 2769vsb.SetValue(Grid.RowProperty, 0); 2779corner.SetValue(Grid.RowProperty, 1);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
2755DependencyProperty dp = System.Windows.Controls.Grid.RowProperty;
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1807return System.Windows.Controls.Grid.RowProperty;