3 instantiations of TabControl
PresentationFramework (2)
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9711bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.TabControl(); };
System\Windows\Markup\KnownTypes.cs (1)
1579case 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)
27public TabControlAutomationPeer(TabControl owner): base(owner)
System\Windows\Automation\Peers\TabItemAutomationPeer.cs (2)
70TabControl parentTabControl = ItemsControlAutomationPeer.Owner as TabControl;
System\Windows\Controls\Primitives\TabPanel.cs (2)
529TabControl tc = TemplatedParent as TabControl;
System\Windows\Controls\TabControl.cs (16)
45DefaultStyleKeyProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(typeof(TabControl))); 46_dType = DependencyObjectType.FromSystemTypeInternal(typeof(TabControl)); 47IsTabStopProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(MS.Internal.KnownBoxes.BooleanBoxes.FalseBox)); 48KeyboardNavigation.DirectionalNavigationProperty.OverrideMetadata(typeof(TabControl), new FrameworkPropertyMetadata(KeyboardNavigationMode.Contained)); 50IsEnabledProperty.OverrideMetadata(typeof(TabControl), new UIPropertyMetadata(new PropertyChangedCallback(OnVisualStatePropertyChanged))); 79typeof(TabControl), 88TabControl tc = (TabControl)d; 114private static readonly DependencyPropertyKey SelectedContentPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContent", typeof(object), typeof(TabControl), new FrameworkPropertyMetadata((object)null)); 142private static readonly DependencyPropertyKey SelectedContentTemplatePropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 171private static readonly DependencyPropertyKey SelectedContentTemplateSelectorPropertyKey = DependencyProperty.RegisterReadOnly("SelectedContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 199typeof(TabControl), 228public static readonly DependencyProperty ContentTemplateProperty = DependencyProperty.Register("ContentTemplate", typeof(DataTemplate), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplate)null)); 253public static readonly DependencyProperty ContentTemplateSelectorProperty = DependencyProperty.Register("ContentTemplateSelector", typeof(DataTemplateSelector), typeof(TabControl), new FrameworkPropertyMetadata((DataTemplateSelector)null)); 279typeof(TabControl),
System\Windows\Controls\TabItem.cs (9)
100TabControl parentTabControl = tabItem.TabControlParent; 192TabControl tabControl = ((TabItem)d).TabControlParent; 308TabControl parentTabControl = TabControlParent; 343TabControl parentTabControl = TabControlParent; 399TabControl tabControl = TabControlParent; 425TabControl tabControl = TabControlParent; 445TabControl tabControl = TabControlParent; 508private TabControl TabControlParent 512return ItemsControl.ItemsControlFromItemContainer(this) as TabControl;
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
719case 623: t = () => typeof(TabControl); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
5772Type type = typeof(System.Windows.Controls.TabControl); 5774this.GetXamlType(typeof(System.Windows.Controls.TabControl)), // DeclaringType 5780bamlMember.GetDelegate = delegate(object target) { return ((System.Windows.Controls.TabControl)target).Items; };
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9709typeof(System.Windows.Controls.TabControl),
System\Windows\Markup\KnownTypes.cs (1)
6177case KnownElements.TabControl: t = typeof(System.Windows.Controls.TabControl); break;
Roslyn.VisualStudio.DiagnosticsWindow (1)
DiagnosticsWindow.cs (1)
57var tabControl = new TabControl