3 instantiations of TabControl
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10767DefaultConstructor = delegate () { return new System.Windows.Controls.TabControl(); },
System\Windows\Markup\KnownTypes.cs (1)
1572case KnownElements.TabControl: o = new System.Windows.Controls.TabControl(); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
DiagnosticsWindow.cs (1)
57var tabControl = new TabControl
41 references to TabControl
Microsoft.VisualStudio.LanguageServices (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\EditorConfigSettings\SettingsEditorControl.g.cs (2)
44internal System.Windows.Controls.TabControl SettingsEditorTabs; 169this.SettingsEditorTabs = ((System.Windows.Controls.TabControl)(target));
artifacts\obj\Microsoft.VisualStudio.LanguageServices\Release\net472\StackTraceExplorer\StackTraceExplorerRoot.g.cs (2)
63internal System.Windows.Controls.TabControl TabControl; 112this.TabControl = ((System.Windows.Controls.TabControl)(target));
PresentationFramework (36)
System\Windows\Automation\Peers\TabControlAutomationPeer.cs (1)
13public TabControlAutomationPeer(TabControl owner): base(owner)
System\Windows\Automation\Peers\TabItemAutomationPeer.cs (2)
58TabControl parentTabControl = ItemsControlAutomationPeer.Owner as TabControl;
System\Windows\Controls\Primitives\TabPanel.cs (2)
522TabControl tc = TemplatedParent as TabControl;
System\Windows\Controls\TabControl.cs (16)
34DefaultStyleKeyProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(typeof(TabControl))); 35_dType = DependencyObjectType.FromSystemTypeInternal(typeof(TabControl)); 36IsTabStopProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(MS.Internal.KnownBoxes.BooleanBoxes.FalseBox)); 37KeyboardNavigation.DirectionalNavigationProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(KeyboardNavigationMode.Contained)); 39IsEnabledProperty.OverrideMetadata(typeof(TabControl), new UIPropertyMetadata(new PropertyChangedCallback(OnVisualStatePropertyChanged))); 68typeof(TabControl), 77TabControl tc = (TabControl)d; 102private static readonly DependencyPropertyKey SelectedContentPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContent", typeof(object), typeof(TabControl), new FrameworkPropertyMetadata((object)null)); 130private static readonly DependencyPropertyKey SelectedContentTemplatePropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 159private static readonly DependencyPropertyKey SelectedContentTemplateSelectorPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 187typeof(TabControl), 216public static readonly DependencyProperty ContentTemplateProperty = DependencyProperty.Register("ContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 241public static readonly DependencyProperty ContentTemplateSelectorProperty = DependencyProperty.Register("ContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 267typeof(TabControl),
System\Windows\Controls\TabItem.cs (9)
93TabControl parentTabControl = tabItem.TabControlParent; 184TabControl tabControl = ((TabItem)d).TabControlParent; 300TabControl parentTabControl = TabControlParent; 335TabControl parentTabControl = TabControlParent; 391TabControl tabControl = TabControlParent; 417TabControl tabControl = TabControlParent; 437TabControl tabControl = TabControlParent; 500private TabControl TabControlParent 504return ItemsControl.ItemsControlFromItemContainer(this) as TabControl;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
716case 623: t = () => typeof(TabControl); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
6167Type type = typeof(System.Windows.Controls.TabControl); 6169this.GetXamlType(typeof(System.Windows.Controls.TabControl)), // DeclaringType 6176GetDelegate = delegate (object target) { return ((System.Windows.Controls.TabControl)target).Items; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10764typeof(System.Windows.Controls.TabControl),
System\Windows\Markup\KnownTypes.cs (1)
6170case KnownElements.TabControl: t = typeof(System.Windows.Controls.TabControl); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
DiagnosticsWindow.cs (1)
57var tabControl = new TabControl