1 type derived from DockPanel
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
1474internal 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)
3689bamlType.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)
22/// <seealso cref="DockPanel" /> 97/// <seealso cref="DockPanel.DockProperty" /> 111/// <seealso cref="DockPanel.DockProperty" /> 124DockPanel p = VisualTreeHelper.GetParent(uie) as DockPanel; 161typeof(DockPanel), 168/// <seealso cref="DockPanel.GetDock" /> 169/// <seealso cref="DockPanel.SetDock" /> 175typeof(DockPanel), 237switch (DockPanel.GetDock(child)) 290switch (DockPanel.GetDock(child))
System\Windows\Controls\Primitives\StatusBar.cs (1)
38ItemsPanelTemplate template = new ItemsPanelTemplate(new FrameworkElementFactory(typeof(DockPanel)));
System\Windows\Controls\TabControl.cs (1)
73new ValidateValueCallback(DockPanel.IsValidDock));
System\Windows\FrameworkElement.cs (2)
3690/// <seealso cref="DockPanel.DockProperty" /> 3700/// <seealso cref="DockPanel.DockProperty" />
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
257case 163: t = () => typeof(DockPanel); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (9)
2361Type type = typeof(System.Windows.Controls.DockPanel); 2362DependencyProperty dp = System.Windows.Controls.DockPanel.DockProperty; 2364this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 2378Type type = typeof(System.Windows.Controls.DockPanel); 2379DependencyProperty dp = System.Windows.Controls.DockPanel.LastChildFillProperty; 2381this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 4436Type type = typeof(System.Windows.Controls.DockPanel); 4438this.GetXamlType(typeof(System.Windows.Controls.DockPanel)), // DeclaringType 4444bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.DockPanel)target).Children; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
3687typeof(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);