12 instantiations of RowDefinition
Microsoft.VisualStudio.LanguageServices (2)
PreviewPane\PreviewPane.xaml.cs (2)
183grid.RowDefinitions.Add(new RowDefinition()); 187grid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto });
Microsoft.VisualStudio.LanguageServices.CSharp (2)
SemanticSearch\SemanticSearchToolWindowImpl.cs (2)
114toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(ToolBarHeight, GridUnitType.Pixel) }); 115toolWindowGrid.RowDefinitions.Add(new RowDefinition());
PresentationFramework (6)
System\Windows\Controls\BorderGapMaskConverter.cs (2)
95RowDefinition rowDef1 = new RowDefinition(); 96RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\Grid.cs (2)
1045extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() }; 1056extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9544DefaultConstructor = delegate () { return new System.Windows.Controls.RowDefinition(); },
System\Windows\Markup\KnownTypes.cs (1)
1509case 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)
95RowDefinition rowDef1 = new RowDefinition(); 96RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\DefinitionBase.cs (3)
434RowDefinition.HeightProperty); 448RowDefinition.MinHeightProperty); 462RowDefinition.MaxHeightProperty);
System\Windows\Controls\GridSplitter.cs (2)
777return column == null ? ((RowDefinition)definition).ActualHeight : column.ActualWidth; 783definition.SetValue(definition is ColumnDefinition ? ColumnDefinition.WidthProperty : RowDefinition.HeightProperty, length);
System\Windows\Controls\RowDefinition.cs (31)
37public sealed class RowDefinitionCollection : IList<RowDefinition> , IList 95public void CopyTo(RowDefinition[] array, int index) // void ICollection<T>.CopyTo(T[] array, int arrayIndex) 125PrivateInsert(_size, value as RowDefinition); 132public void Add(RowDefinition value) // void ICollection<T>.Add(T item) 163RowDefinition item = value as RowDefinition; 177public bool Contains(RowDefinition value) // bool ICollection<T>.Contains(T item) 194return (this.IndexOf(value as RowDefinition)); 200public int IndexOf(RowDefinition value) // int IList<T>.IndexOf(T item); 227PrivateInsert(index, value as RowDefinition); 233public void Insert(int index, RowDefinition value) // void IList<T>.Insert(int index, T item) 256PrivateRemove(value as RowDefinition); 263public bool Remove(RowDefinition value) // bool ICollection<T>.Remove(T item) 268PrivateRemove(value as RowDefinition); 348IEnumerator<RowDefinition> IEnumerable<RowDefinition>.GetEnumerator() 439PrivateConnectChild(index, value as RowDefinition); 446public RowDefinition this[int index] // T IList<T>.this[int index] {get; set;} 454return ((RowDefinition)_items[index]); 541RowDefinition item = value as RowDefinition; 562RowDefinition item = value as RowDefinition; 699RowDefinition[] newItems = new RowDefinition[value]; 739internal struct Enumerator : IEnumerator<RowDefinition>, IEnumerator 810public RowDefinition Current 829return ((RowDefinition)_currentElement); 1008typeof(RowDefinition), 1023typeof(RowDefinition), 1038typeof(RowDefinition),
System\Windows\Controls\ScrollViewer.cs (4)
2675FrameworkElementFactory gridRow1 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionOne"); 2676FrameworkElementFactory gridRow2 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionTwo"); 2707gridRow1.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Star)); 2708gridRow2.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Auto));
System\Windows\FrameworkElementFactory.cs (2)
881RowDefinition childNodeRowDefinition = null; 886|| (childNodeRowDefinition = childFrameworkObject.FCE as RowDefinition) != null )
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
635case 541: t = () => typeof(RowDefinition); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
3403Type type = typeof(System.Windows.Controls.RowDefinition); 3404DependencyProperty dp = System.Windows.Controls.RowDefinition.HeightProperty; 3406this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3422Type type = typeof(System.Windows.Controls.RowDefinition); 3423DependencyProperty dp = System.Windows.Controls.RowDefinition.MaxHeightProperty; 3425this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3441Type type = typeof(System.Windows.Controls.RowDefinition); 3442DependencyProperty dp = System.Windows.Controls.RowDefinition.MinHeightProperty; 3444this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9541typeof(System.Windows.Controls.RowDefinition),
System\Windows\Markup\KnownTypes.cs (4)
1864return System.Windows.Controls.RowDefinition.HeightProperty; 1866return System.Windows.Controls.RowDefinition.MaxHeightProperty; 1868return System.Windows.Controls.RowDefinition.MinHeightProperty; 6089case KnownElements.RowDefinition: t = typeof(System.Windows.Controls.RowDefinition); break;