3 instantiations of TabControl
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10768DefaultConstructor = delegate () { return new System.Windows.Controls.TabControl(); },
System\Windows\Markup\KnownTypes.cs (1)
1573case 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)
14public TabControlAutomationPeer(TabControl owner): base(owner)
System\Windows\Automation\Peers\TabItemAutomationPeer.cs (2)
59TabControl parentTabControl = ItemsControlAutomationPeer.Owner as TabControl;
System\Windows\Controls\Primitives\TabPanel.cs (2)
523TabControl tc = TemplatedParent as TabControl;
System\Windows\Controls\TabControl.cs (16)
35DefaultStyleKeyProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(typeof(TabControl))); 36_dType = DependencyObjectType.FromSystemTypeInternal(typeof(TabControl)); 37IsTabStopProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(MS.Internal.KnownBoxes.BooleanBoxes.FalseBox)); 38KeyboardNavigation.DirectionalNavigationProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(KeyboardNavigationMode.Contained)); 40IsEnabledProperty.OverrideMetadata(typeof(TabControl), new UIPropertyMetadata(new PropertyChangedCallback(OnVisualStatePropertyChanged))); 69typeof(TabControl), 78TabControl tc = (TabControl)d; 104private static readonly DependencyPropertyKey SelectedContentPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContent", typeof(object), typeof(TabControl), new FrameworkPropertyMetadata((object)null)); 132private static readonly DependencyPropertyKey SelectedContentTemplatePropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 161private static readonly DependencyPropertyKey SelectedContentTemplateSelectorPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 189typeof(TabControl), 218public static readonly DependencyProperty ContentTemplateProperty = DependencyProperty.Register("ContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 243public static readonly DependencyProperty ContentTemplateSelectorProperty = DependencyProperty.Register("ContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 269typeof(TabControl),
System\Windows\Controls\TabItem.cs (9)
94TabControl parentTabControl = tabItem.TabControlParent; 188TabControl tabControl = ((TabItem)d).TabControlParent; 304TabControl parentTabControl = TabControlParent; 339TabControl parentTabControl = TabControlParent; 395TabControl tabControl = TabControlParent; 421TabControl tabControl = TabControlParent; 441TabControl tabControl = TabControlParent; 504private TabControl TabControlParent 508return ItemsControl.ItemsControlFromItemContainer(this) as TabControl;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
717case 623: t = () => typeof(TabControl); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
6168Type type = typeof(System.Windows.Controls.TabControl); 6170this.GetXamlType(typeof(System.Windows.Controls.TabControl)), // DeclaringType 6177GetDelegate = delegate (object target) { return ((System.Windows.Controls.TabControl)target).Items; },
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
10765typeof(System.Windows.Controls.TabControl),
System\Windows\Markup\KnownTypes.cs (1)
6171case KnownElements.TabControl: t = typeof(System.Windows.Controls.TabControl); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
DiagnosticsWindow.cs (1)
57var tabControl = new TabControl