1 write to RowDefinitions
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (1)
100RowDefinitions = { new RowDefinition(), new RowDefinition() },
17 references to RowDefinitions
PresentationFramework (10)
src\Framework\System\Windows\Automation\Peers\CalendarAutomationPeer.cs (3)
370return Math.Max(0, this.OwningGrid.RowDefinitions.Count - 1); 374return this.OwningGrid.RowDefinitions.Count; 390if (this.OwningGrid != null && row >= 0 && row < this.OwningGrid.RowDefinitions.Count && column >= 0 && column < this.OwningGrid.ColumnDefinitions.Count)
src\Framework\System\Windows\Controls\BorderGapMaskConverter.cs (2)
108grid.RowDefinitions.Add(rowDef1); 109grid.RowDefinitions.Add(rowDef2);
src\Framework\System\Windows\Controls\GridSplitter.cs (3)
553int count = (_resizeData.ResizeDirection == GridResizeDirection.Columns) ? _resizeData.Grid.ColumnDefinitions.Count : _resizeData.Grid.RowDefinitions.Count; 771return direction == GridResizeDirection.Columns ? (DefinitionBase)grid.ColumnDefinitions[index] : (DefinitionBase)grid.RowDefinitions[index]; 835IEnumerable definitions = _resizeData.ResizeDirection == GridResizeDirection.Columns ? (IEnumerable)_resizeData.Grid.ColumnDefinitions : (IEnumerable)_resizeData.Grid.RowDefinitions;
src\Framework\System\Windows\FrameworkElementFactory.cs (1)
929parentGrid.RowDefinitions.Add(childNodeRowDefinition);
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (1)
6380bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.Grid)target).RowDefinitions; };
System.Activities.Presentation (7)
System.Activities.Presentation\System\Activities\Presentation\MiniMap\MiniMapControl.xaml.cs (7)
310get { return this.contentGrid.ActualHeight - 2 * (this.contentGrid.RowDefinitions[0].MinHeight); } 481this.contentGrid.RowDefinitions[0].MinHeight = margin; 482this.contentGrid.RowDefinitions[2].MinHeight = margin; 491this.contentGrid.RowDefinitions[0].MinHeight = 0.0; 492this.contentGrid.RowDefinitions[2].MinHeight = 0.0; 501this.contentGrid.RowDefinitions[0].MinHeight = 0.0; 502this.contentGrid.RowDefinitions[2].MinHeight = 0.0;