13 instantiations of RowDefinition
Microsoft.VisualStudio.LanguageServices (2)
PreviewPane\PreviewPane.xaml.cs (2)
184grid.RowDefinitions.Add(new RowDefinition()); 188grid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });
Microsoft.VisualStudio.LanguageServices.CSharp (3)
SemanticSearch\SemanticSearchToolWindowImpl.cs (3)
136toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(ToolBarHeight, GridUnitType.Pixel) }); 137toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); 138toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(1, GridUnitType.Star) });
PresentationFramework (6)
System\Windows\Controls\BorderGapMaskConverter.cs (2)
94RowDefinition rowDef1 = new RowDefinition(); 95RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\Grid.cs (2)
1038extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() }; 1049extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9543DefaultConstructor = delegate () { return new System.Windows.Controls.RowDefinition(); },
System\Windows\Markup\KnownTypes.cs (1)
1508case KnownElements.RowDefinition: o = new System.Windows.Controls.RowDefinition(); break;
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 });
59 references to RowDefinition
PresentationFramework (59)
System\Windows\Controls\BorderGapMaskConverter.cs (2)
94RowDefinition rowDef1 = new RowDefinition(); 95RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\DefinitionBase.cs (3)
433RowDefinition.HeightProperty); 447RowDefinition.MinHeightProperty); 461RowDefinition.MaxHeightProperty);
System\Windows\Controls\GridSplitter.cs (2)
776return column == null ? ((RowDefinition)definition).ActualHeight : column.ActualWidth; 782definition.SetValue(definition is ColumnDefinition ? ColumnDefinition.WidthProperty : RowDefinition.HeightProperty, length);
System\Windows\Controls\RowDefinition.cs (31)
36public sealed class RowDefinitionCollection : IList<RowDefinition> , IList 94public void CopyTo(RowDefinition[] array, int index) // void ICollection<T>.CopyTo(T[] array, int arrayIndex) 124PrivateInsert(_size, value as RowDefinition); 131public void Add(RowDefinition value) // void ICollection<T>.Add(T item) 162RowDefinition item = value as RowDefinition; 176public bool Contains(RowDefinition value) // bool ICollection<T>.Contains(T item) 193return (this.IndexOf(value as RowDefinition)); 199public int IndexOf(RowDefinition value) // int IList<T>.IndexOf(T item); 226PrivateInsert(index, value as RowDefinition); 232public void Insert(int index, RowDefinition value) // void IList<T>.Insert(int index, T item) 255PrivateRemove(value as RowDefinition); 262public bool Remove(RowDefinition value) // bool ICollection<T>.Remove(T item) 267PrivateRemove(value as RowDefinition); 347IEnumerator<RowDefinition> IEnumerable<RowDefinition>.GetEnumerator() 438PrivateConnectChild(index, value as RowDefinition); 445public RowDefinition this[int index] // T IList<T>.this[int index] {get; set;} 453return ((RowDefinition)_items[index]); 540RowDefinition item = value as RowDefinition; 561RowDefinition item = value as RowDefinition; 698RowDefinition[] newItems = new RowDefinition[value]; 738internal struct Enumerator : IEnumerator<RowDefinition>, IEnumerator 809public RowDefinition Current 828return ((RowDefinition)_currentElement); 1007typeof(RowDefinition), 1022typeof(RowDefinition), 1037typeof(RowDefinition),
System\Windows\Controls\ScrollViewer.cs (4)
2668FrameworkElementFactory gridRow1 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionOne"); 2669FrameworkElementFactory gridRow2 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionTwo"); 2700gridRow1.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Star)); 2701gridRow2.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Auto));
System\Windows\FrameworkElementFactory.cs (2)
880RowDefinition childNodeRowDefinition = null; 885|| (childNodeRowDefinition = childFrameworkObject.FCE as RowDefinition) != null )
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
634case 541: t = () => typeof(RowDefinition); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
3402Type type = typeof(System.Windows.Controls.RowDefinition); 3403DependencyProperty dp = System.Windows.Controls.RowDefinition.HeightProperty; 3405this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3421Type type = typeof(System.Windows.Controls.RowDefinition); 3422DependencyProperty dp = System.Windows.Controls.RowDefinition.MaxHeightProperty; 3424this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3440Type type = typeof(System.Windows.Controls.RowDefinition); 3441DependencyProperty dp = System.Windows.Controls.RowDefinition.MinHeightProperty; 3443this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9540typeof(System.Windows.Controls.RowDefinition),
System\Windows\Markup\KnownTypes.cs (4)
1863return System.Windows.Controls.RowDefinition.HeightProperty; 1865return System.Windows.Controls.RowDefinition.MaxHeightProperty; 1867return System.Windows.Controls.RowDefinition.MinHeightProperty; 6088case KnownElements.RowDefinition: t = typeof(System.Windows.Controls.RowDefinition); break;