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)
93RowDefinition rowDef1 = new RowDefinition(); 94RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\Grid.cs (2)
1046extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() }; 1057extData.DefinitionsV = new DefinitionBase[] { new RowDefinition() };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8631bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.RowDefinition(); };
System\Windows\Markup\KnownTypes.cs (1)
1515case 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)
93RowDefinition rowDef1 = new RowDefinition(); 94RowDefinition rowDef2 = new RowDefinition();
System\Windows\Controls\DefinitionBase.cs (3)
434RowDefinition.HeightProperty); 448RowDefinition.MinHeightProperty); 462RowDefinition.MaxHeightProperty);
System\Windows\Controls\GridSplitter.cs (2)
771return column == null ? ((RowDefinition)definition).ActualHeight : column.ActualWidth; 777definition.SetValue(definition is ColumnDefinition ? ColumnDefinition.WidthProperty : RowDefinition.HeightProperty, length);
System\Windows\Controls\RowDefinition.cs (31)
44public sealed class RowDefinitionCollection : IList<RowDefinition> , IList 102public void CopyTo(RowDefinition[] array, int index) // void ICollection<T>.CopyTo(T[] array, int arrayIndex) 132PrivateInsert(_size, value as RowDefinition); 139public void Add(RowDefinition value) // void ICollection<T>.Add(T item) 170RowDefinition item = value as RowDefinition; 184public bool Contains(RowDefinition value) // bool ICollection<T>.Contains(T item) 201return (this.IndexOf(value as RowDefinition)); 207public int IndexOf(RowDefinition value) // int IList<T>.IndexOf(T item); 234PrivateInsert(index, value as RowDefinition); 240public void Insert(int index, RowDefinition value) // void IList<T>.Insert(int index, T item) 263PrivateRemove(value as RowDefinition); 270public bool Remove(RowDefinition value) // bool ICollection<T>.Remove(T item) 275PrivateRemove(value as RowDefinition); 355IEnumerator<RowDefinition> IEnumerable<RowDefinition>.GetEnumerator() 446PrivateConnectChild(index, value as RowDefinition); 453public RowDefinition this[int index] // T IList<T>.this[int index] {get; set;} 461return ((RowDefinition)_items[index]); 548RowDefinition item = value as RowDefinition; 569RowDefinition item = value as RowDefinition; 706RowDefinition[] newItems = new RowDefinition[value]; 746internal struct Enumerator : IEnumerator<RowDefinition>, IEnumerator 817public RowDefinition Current 836return ((RowDefinition)_currentElement); 1015typeof(RowDefinition), 1030typeof(RowDefinition), 1045typeof(RowDefinition),
System\Windows\Controls\ScrollViewer.cs (4)
2671FrameworkElementFactory gridRow1 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionOne"); 2672FrameworkElementFactory gridRow2 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionTwo"); 2699gridRow1.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Star)); 2700gridRow2.SetValue(RowDefinition.HeightProperty, new GridLength(1.0, GridUnitType.Auto));
System\Windows\FrameworkElementFactory.cs (2)
883RowDefinition childNodeRowDefinition = null; 888|| (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)
3279Type type = typeof(System.Windows.Controls.RowDefinition); 3280DependencyProperty dp = System.Windows.Controls.RowDefinition.HeightProperty; 3282this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3296Type type = typeof(System.Windows.Controls.RowDefinition); 3297DependencyProperty dp = System.Windows.Controls.RowDefinition.MaxHeightProperty; 3299this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType 3313Type type = typeof(System.Windows.Controls.RowDefinition); 3314DependencyProperty dp = System.Windows.Controls.RowDefinition.MinHeightProperty; 3316this.GetXamlType(typeof(System.Windows.Controls.RowDefinition)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
8629typeof(System.Windows.Controls.RowDefinition),
System\Windows\Markup\KnownTypes.cs (4)
1870return System.Windows.Controls.RowDefinition.HeightProperty; 1872return System.Windows.Controls.RowDefinition.MaxHeightProperty; 1874return System.Windows.Controls.RowDefinition.MinHeightProperty; 6095case KnownElements.RowDefinition: t = typeof(System.Windows.Controls.RowDefinition); break;