2 types derived from StackPanel
PresentationFramework (1)
System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
18public class ToolBarPanel : StackPanel
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\Primitives\RibbonGroupsPanel.cs (1)
22public class RibbonGroupsPanel : StackPanel, ISupportStarLayout
2 instantiations of StackPanel
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10426DefaultConstructor = delegate () { return new System.Windows.Controls.StackPanel(); },
System\Windows\Markup\KnownTypes.cs (1)
1557case KnownElements.StackPanel: o = new System.Windows.Controls.StackPanel(); break;
21 references to StackPanel
PresentationFramework (17)
System\Windows\Controls\GroupStyle.cs (1)
39ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
System\Windows\Controls\ItemsControl.cs (1)
853ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
System\Windows\Controls\Stack.cs (3)
305typeof(StackPanel), 781private static void ResetScrolling(StackPanel element) 1008ResetScrolling(d as StackPanel);
System\Windows\Controls\VirtualizingStackPanel.cs (2)
3256return StackPanel.StackMeasureHelper(this, _scrollData, constraint); 3261return StackPanel.StackArrangeHelper(this, _scrollData, arrangeSize);
System\Windows\Controls\WrapPanel.cs (1)
133StackPanel.OrientationProperty.AddOwner(
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
694case 601: t = () => typeof(StackPanel); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
6055Type type = typeof(System.Windows.Controls.StackPanel); 6057this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType 6064GetDelegate = delegate (object target) { return ((System.Windows.Controls.StackPanel)target).Children; }, 7828Type type = typeof(System.Windows.Controls.StackPanel); 7829DependencyProperty dp = System.Windows.Controls.StackPanel.OrientationProperty; 7831this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10423typeof(System.Windows.Controls.StackPanel),
System\Windows\Markup\KnownTypes.cs (1)
6148case KnownElements.StackPanel: t = typeof(System.Windows.Controls.StackPanel); break;
PresentationUI (2)
src\wpf\artifacts\obj\PresentationUI\x64\Release\net11.0\TenFeetInstallationError.g.cs (2)
82internal System.Windows.Controls.StackPanel ButtonsPanel; 157this.ButtonsPanel = ((System.Windows.Controls.StackPanel)(target));
System.Windows.Controls.Ribbon (2)
Microsoft\Windows\Controls\Ribbon\RibbonControlGroup.cs (2)
38FrameworkElementFactory fef = new FrameworkElementFactory(typeof(StackPanel)); 39fef.SetValue(StackPanel.OrientationProperty, Orientation.Horizontal);