2 types derived from StackPanel
PresentationFramework (1)
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
28public class ToolBarPanel : StackPanel
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
28public class RibbonGroupsPanel : StackPanel, ISupportStarLayout
10 instantiations of StackPanel
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineDiagnostics\InlineDiagnosticsTag.cs (1)
97Child = new StackPanel
InlineHints\InlineHintsTag.cs (1)
186var stackPanel = new StackPanel
Microsoft.VisualStudio.LanguageServices (1)
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
62var stackPanel = new StackPanel
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9406bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.StackPanel(); };
System\Windows\Markup\KnownTypes.cs (1)
1564case KnownElements.StackPanel: o = new System.Windows.Controls.StackPanel(); break;
Roslyn.VisualStudio.DiagnosticsWindow (5)
OptionPages\InternalOptionsControl.cs (4)
28var optionsPanel = new StackPanel(); 70var searchPanel = new StackPanel() 88var selectionPanel = new StackPanel() 163var panel = new StackPanel();
PerfMargin\PerfMarginPanel.cs (1)
93var s = new StackPanel() { Orientation = Orientation.Horizontal };
40 references to StackPanel
Microsoft.CodeAnalysis.EditorFeatures.Wpf (5)
artifacts\obj\Microsoft.CodeAnalysis.EditorFeatures.Wpf\Release\net472\InlineRename\UI\Adornment\RenameFlyout.g.cs (2)
62internal System.Windows.Controls.StackPanel MainPanel; 176this.MainPanel = ((System.Windows.Controls.StackPanel)(target));
InlineDiagnostics\InlineDiagnosticsTag.cs (2)
183var stackPanel = (StackPanel)border.Child;
InlineHints\InlineHintsTag.cs (1)
186var stackPanel = new StackPanel
Microsoft.VisualStudio.LanguageServices (7)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\ChangeSignature\ChangeSignatureDialog.g.cs (2)
149internal System.Windows.Controls.StackPanel ControlButtonsPanel; 367this.ControlButtonsPanel = ((System.Windows.Controls.StackPanel)(target));
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\EditorConfigSettings\SettingsEditorControl.g.cs (2)
84internal System.Windows.Controls.StackPanel SettingsEditorSearch; 190this.SettingsEditorSearch = ((System.Windows.Controls.StackPanel)(target));
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\PreviewPane\PreviewPane.g.cs (2)
54internal System.Windows.Controls.StackPanel HeaderStackPanel; 205this.HeaderStackPanel = ((System.Windows.Controls.StackPanel)(target));
UnusedReferences\Dialog\UnusedReferencesTableProvider.ColumnDefinitions.cs (1)
62var stackPanel = new StackPanel
PresentationFramework (17)
System\Windows\Controls\GroupStyle.cs (1)
40ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
System\Windows\Controls\ItemsControl.cs (1)
869ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
System\Windows\Controls\Stack.cs (3)
316typeof(StackPanel), 792private static void ResetScrolling(StackPanel element) 1019ResetScrolling(d as StackPanel);
System\Windows\Controls\VirtualizingStackPanel.cs (2)
3276return StackPanel.StackMeasureHelper(this, _scrollData, constraint); 3281return StackPanel.StackArrangeHelper(this, _scrollData, arrangeSize);
System\Windows\Controls\WrapPanel.cs (1)
144StackPanel.OrientationProperty.AddOwner(
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
697case 601: t = () => typeof(StackPanel); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
5670Type type = typeof(System.Windows.Controls.StackPanel); 5672this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType 5678bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.StackPanel)target).Children; }; 7263Type type = typeof(System.Windows.Controls.StackPanel); 7264DependencyProperty dp = System.Windows.Controls.StackPanel.OrientationProperty; 7266this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9404typeof(System.Windows.Controls.StackPanel),
System\Windows\Markup\KnownTypes.cs (1)
6155case KnownElements.StackPanel: t = typeof(System.Windows.Controls.StackPanel); break;
PresentationUI (2)
artifacts\obj\PresentationUI\Debug\net9.0\TenFeetInstallationError.g.cs (2)
82internal System.Windows.Controls.StackPanel ButtonsPanel; 157this.ButtonsPanel = ((System.Windows.Controls.StackPanel)(target));
Roslyn.VisualStudio.DiagnosticsWindow (7)
OptionPages\InternalOptionsControl.cs (4)
28var optionsPanel = new StackPanel(); 70var searchPanel = new StackPanel() 88var selectionPanel = new StackPanel() 163var panel = new StackPanel();
PerfMargin\PerfMarginPanel.cs (3)
93var s = new StackPanel() { Orientation = Orientation.Horizontal }; 132foreach (StackPanel item in _detailsListView.Items) 142if (_mainListView.SelectedItem is not StackPanel selectedItem)
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonControlGroup.cs (2)
42FrameworkElementFactory fef = new FrameworkElementFactory(typeof(StackPanel)); 43fef.SetValue(StackPanel.OrientationProperty, Orientation.Horizontal);