13 references to 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)
137toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = new GridLength(ToolBarHeight, GridUnitType.Pixel) }); 138toolWindowGrid.RowDefinitions.Add(new RowDefinition() { Height = GridLength.Auto }); 139toolWindowGrid.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 });