2 types derived from StackPanel
PresentationFramework (1)
src\Framework\System\Windows\Controls\Primitives\ToolBarPanel.cs (1)
29public class ToolBarPanel : StackPanel
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagPanel.cs (1)
13sealed class FlagPanel : StackPanel
4 instantiations of StackPanel
PresentationFramework (2)
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9402bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.StackPanel(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1565case KnownElements.StackPanel: o = new System.Windows.Controls.StackPanel(); break;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (1)
2588StackPanel stackPanel = new StackPanel();
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (1)
86this.stackPanel = new StackPanel();
21 references to StackPanel
PresentationFramework (17)
src\Framework\System\Windows\Controls\GroupStyle.cs (1)
43ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
src\Framework\System\Windows\Controls\ItemsControl.cs (1)
871ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(StackPanel)));
src\Framework\System\Windows\Controls\Stack.cs (3)
322typeof(StackPanel), 798private static void ResetScrolling(StackPanel element) 1025ResetScrolling(d as StackPanel);
src\Framework\System\Windows\Controls\VirtualizingStackPanel.cs (2)
3215return StackPanel.StackMeasureHelper(this, _scrollData, constraint); 3220return StackPanel.StackArrangeHelper(this, _scrollData, arrangeSize);
src\Framework\System\Windows\Controls\WrapPanel.cs (1)
146StackPanel.OrientationProperty.AddOwner(
src\Framework\System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
693case 601: t = () => typeof(StackPanel); break;
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (6)
5628Type type = typeof(System.Windows.Controls.StackPanel); 5630this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType 5636bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.StackPanel)target).Children; }; 7221Type type = typeof(System.Windows.Controls.StackPanel); 7222DependencyProperty dp = System.Windows.Controls.StackPanel.OrientationProperty; 7224this.GetXamlType(typeof(System.Windows.Controls.StackPanel)), // DeclaringType
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9400typeof(System.Windows.Controls.StackPanel),
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
6145case KnownElements.StackPanel: t = typeof(System.Windows.Controls.StackPanel); break;
System.Activities.Core.Presentation (1)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (1)
2588StackPanel stackPanel = new StackPanel();
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\PropertyEditing\Editors\FlagEditor.xaml.cs (2)
108StackPanel panel = VisualTreeHelper.GetChild(comboBoxItem, 0) as StackPanel;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (1)
64StackPanel stackPanel;