1 type derived from DockPanel
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
1477internal class AvalonAdapter : SWC.DockPanel, IDisposable, IKeyboardInputSite, IAvalonAdapter
5 instantiations of DockPanel
Microsoft.CodeAnalysis.EditorFeatures.Wpf (1)
InlineHints\InlineHintsTag.cs (1)
175var dockPanel = new DockPanel
Microsoft.VisualStudio.LanguageServices (1)
StackTraceExplorer\StackTraceExplorerToolWindow.cs (1)
42var dockPanel = new DockPanel
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3691bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.DockPanel(); };
System\Windows\Markup\KnownTypes.cs (1)
1233case KnownElements.DockPanel: o = new System.Windows.Controls.DockPanel(); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
OptionPages\InternalOptionsControl.cs (1)
99var mainPanel = new DockPanel() { HorizontalAlignment = HorizontalAlignment.Stretch };
41 references to DockPanel
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineHints\InlineHintsTag.cs (2)
175var dockPanel = new DockPanel 184DockPanel.SetDock(border, Dock.Bottom);
Microsoft.VisualStudio.LanguageServices (7)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\PreviewPane\PreviewPane.g.cs (4)
110internal System.Windows.Controls.DockPanel DescriptionDockPanel; 150internal System.Windows.Controls.DockPanel PreviewDockPanel; 244this.DescriptionDockPanel = ((System.Windows.Controls.DockPanel)(target)); 265this.PreviewDockPanel = ((System.Windows.Controls.DockPanel)(target));
StackTraceExplorer\StackTraceExplorerToolWindow.cs (3)
42var dockPanel = new DockPanel 136var contentRoot = (DockPanel)Content;
PresentationFramework (29)
System\Windows\Controls\DockPanel.cs (11)
28/// <seealso cref="DockPanel" /> 103/// <seealso cref="DockPanel.DockProperty" /> 117/// <seealso cref="DockPanel.DockProperty" /> 130DockPanel p = VisualTreeHelper.GetParent(uie) as DockPanel; 167typeof(DockPanel), 174/// <seealso cref="DockPanel.GetDock" /> 175/// <seealso cref="DockPanel.SetDock" /> 181typeof(DockPanel), 243switch (DockPanel.GetDock(child)) 296switch (DockPanel.GetDock(child))
System\Windows\Controls\Primitives\StatusBar.cs (1)
41ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DockPanel)));
System\Windows\Controls\TabControl.cs (1)
83new ValidateValueCallback(DockPanel.IsValidDock));
System\Windows\FrameworkElement.cs (2)
3701/// <seealso cref="DockPanel.DockProperty" /> 3711/// <seealso cref="DockPanel.DockProperty" />
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
259case 163: t = () => typeof(DockPanel); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
2363Type type = typeof(System.Windows.Controls.DockPanel); 2364DependencyProperty dp = System.Windows.Controls.DockPanel.DockProperty; 2366this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 2380Type type = typeof(System.Windows.Controls.DockPanel); 2381DependencyProperty dp = System.Windows.Controls.DockPanel.LastChildFillProperty; 2383this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 4438Type type = typeof(System.Windows.Controls.DockPanel); 4440this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 4446bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.DockPanel)target).Children; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3689typeof(System.Windows.Controls.DockPanel),
System\Windows\Markup\KnownTypes.cs (3)
1758return System.Windows.Controls.DockPanel.DockProperty; 1760return System.Windows.Controls.DockPanel.LastChildFillProperty; 5717case KnownElements.DockPanel: t = typeof(System.Windows.Controls.DockPanel); break;
Roslyn.VisualStudio.DiagnosticsWindow (3)
OptionPages\InternalOptionsControl.cs (3)
99var mainPanel = new DockPanel() { HorizontalAlignment = HorizontalAlignment.Stretch }; 104DockPanel.SetDock(searchPanel, Dock.Top); 105DockPanel.SetDock(selectionPanel, Dock.Bottom);