4 instantiations of ComboBoxItem
PresentationFramework (3)
System\Windows\Controls\ComboBox.cs (1)
1299return new ComboBoxItem();
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2797bamlType.DefaultConstructor = delegate() { return new System.Windows.Controls.ComboBoxItem(); };
System\Windows\Markup\KnownTypes.cs (1)
1177case KnownElements.ComboBoxItem: o = new System.Windows.Controls.ComboBoxItem(); break;
PresentationUI (1)
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (1)
1827ComboBoxItem newItem = new ComboBoxItem();
35 references to ComboBoxItem
Microsoft.VisualStudio.LanguageServices.CSharp (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices.CSharp\Release\net472\Options\AdvancedOptionPageControl.g.cs (4)
220internal System.Windows.Controls.ComboBoxItem Rename_UI_inline; 228internal System.Windows.Controls.ComboBoxItem Rename_UI_dashboard; 875this.Rename_UI_inline = ((System.Windows.Controls.ComboBoxItem)(target)); 878this.Rename_UI_dashboard = ((System.Windows.Controls.ComboBoxItem)(target));
Microsoft.VisualStudio.LanguageServices.VisualBasic (4)
artifacts\obj\Microsoft.VisualStudio.LanguageServices.VisualBasic\Release\net472\Options\AdvancedOptionPageControl.g.vb (4)
174Friend WithEvents Rename_UI_inline As System.Windows.Controls.ComboBoxItem 181Friend WithEvents Rename_UI_dashboard As System.Windows.Controls.ComboBoxItem 713Me.Rename_UI_inline = CType(target,System.Windows.Controls.ComboBoxItem) 717Me.Rename_UI_dashboard = CType(target,System.Windows.Controls.ComboBoxItem)
PresentationFramework (23)
System\Windows\Controls\ComboBox.cs (13)
39[StyleTypedProperty(Property = "ItemContainerStyle", StyleTargetType = typeof(ComboBoxItem))] 503ComboBoxItem highlightedElement; 1104ComboBoxItem cbi = info.Container as ComboBoxItem; 1255internal void NotifyComboBoxItemMouseDown(ComboBoxItem comboBoxItem) 1260internal void NotifyComboBoxItemMouseUp(ComboBoxItem comboBoxItem) 1272internal void NotifyComboBoxItemEnter(ComboBoxItem item) 1293return (item is ComboBoxItem); 1960ComboBoxItem cbi = (_highlightedInfo != null) ? _highlightedInfo.Container as ComboBoxItem : null; 1968cbi = (_highlightedInfo != null) ? _highlightedInfo.Container as ComboBoxItem : null; 1978private ComboBoxItem HighlightedElement 1980get { return (_highlightedInfo == null) ? null : _highlightedInfo.Container as ComboBoxItem; }
System\Windows\Controls\ComboBoxItem.cs (4)
53DefaultStyleKeyProperty.OverrideMetadata(typeof(ComboBoxItem), new FrameworkPropertyMetadata(typeof(ComboBoxItem))); 54_dType = DependencyObjectType.FromSystemTypeInternal(typeof(ComboBoxItem)); 65DependencyProperty.RegisterReadOnly("IsHighlighted", typeof(bool), typeof(ComboBoxItem),
System\Windows\Markup\Baml2006\Baml2006KnownTypes.cs (1)
189case 93: t = () => typeof(ComboBoxItem); break;
System\Windows\Markup\Baml2006\WpfGeneratedKnownProperties.cs (3)
4318Type type = typeof(System.Windows.Controls.ComboBoxItem); 4319DependencyProperty dp = System.Windows.Controls.ComboBoxItem.ContentProperty; 4321this.GetXamlType(typeof(System.Windows.Controls.ComboBoxItem)), // DeclaringType
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
2795typeof(System.Windows.Controls.ComboBoxItem),
System\Windows\Markup\KnownTypes.cs (1)
5647case KnownElements.ComboBoxItem: t = typeof(System.Windows.Controls.ComboBoxItem); break;
PresentationUI (4)
MS\Internal\Documents\Application\ZoomComboBox.cs (1)
287Text = ((ComboBoxItem)SelectedItem).Content.ToString();
MS\Internal\Documents\DocumentApplicationDocumentViewer.cs (3)
1690ComboBoxItem cbItem = ZoomComboBox.SelectedItem as ComboBoxItem; 1827ComboBoxItem newItem = new ComboBoxItem();