2 types derived from StackPanel
PresentationFramework (1)
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
19public class ToolBarPanel : StackPanel
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
23public 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)
10427DefaultConstructor = delegate () { return new System.Windows.Controls.StackPanel(); },
System\Windows\Markup\KnownTypes.cs (1)
1558case 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)
860ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
System\Windows\Controls\Stack.cs (3)
306typeof(StackPanel), 782private static void ResetScrolling(StackPanel element) 1009ResetScrolling(d as StackPanel);
System\Windows\Controls\VirtualizingStackPanel.cs (2)
3269return StackPanel.StackMeasureHelper(this, _scrollData, constraint); 3274return StackPanel.StackArrangeHelper(this, _scrollData, arrangeSize);
System\Windows\Controls\WrapPanel.cs (1)
134StackPanel.OrientationProperty.AddOwner(
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
695case 601: t = () => typeof(StackPanel); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
6056Type type = typeof(System.Windows.Controls.StackPanel); 6058this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType 6065GetDelegate = delegate (object target) { return ((System.Windows.Controls.StackPanel)target).Children; }, 7825Type type = typeof(System.Windows.Controls.StackPanel); 7826DependencyProperty dp = System.Windows.Controls.StackPanel.OrientationProperty; 7828this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10424typeof(System.Windows.Controls.StackPanel),
System\Windows\Markup\KnownTypes.cs (1)
6149case KnownElements.StackPanel: t = typeof(System.Windows.Controls.StackPanel); break;
PresentationUI (2)
artifacts\obj\PresentationUI\x86\Debug\net10.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)
39FrameworkElementFactory fef = new FrameworkElementFactory(typeof(StackPanel)); 40fef.SetValue(StackPanel.OrientationProperty, Orientation.Horizontal);